comparison src/mbyte.c @ 1495:04265ffbda1f v7.1.210

updated for version 7.1-210
author vimboss
date Sun, 06 Jan 2008 16:18:56 +0000
parents 28558ab31051
children ca5b52e99385
comparison
equal deleted inserted replaced
1494:58a14bafc1f0 1495:04265ffbda1f
2861 && str[n + 2] == KE_FILLER) 2861 && str[n + 2] == KE_FILLER)
2862 { 2862 {
2863 buf[m++] = K_SPECIAL; 2863 buf[m++] = K_SPECIAL;
2864 n += 2; 2864 n += 2;
2865 } 2865 }
2866 else if ((str[n] == K_SPECIAL
2866 # ifdef FEAT_GUI 2867 # ifdef FEAT_GUI
2867 else if (str[n] == CSI 2868 || str[n] == CSI
2869 # endif
2870 )
2868 && str[n + 1] == KS_EXTRA 2871 && str[n + 1] == KS_EXTRA
2869 && str[n + 2] == (int)KE_CSI) 2872 && str[n + 2] == (int)KE_CSI)
2870 { 2873 {
2871 buf[m++] = CSI; 2874 buf[m++] = CSI;
2872 n += 2; 2875 n += 2;
2873 } 2876 }
2874 # endif
2875 else if (str[n] == K_SPECIAL 2877 else if (str[n] == K_SPECIAL
2876 # ifdef FEAT_GUI 2878 # ifdef FEAT_GUI
2877 || str[n] == CSI 2879 || str[n] == CSI
2878 # endif 2880 # endif
2879 ) 2881 )