X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fselect-x.c;h=aea4aa43c7aef79d4931ed01e863ca6d840d7a69;hb=e4092ce710193e23052612e97aa7815e547f6461;hp=25bd52a87d49e43cacb5e49373c841c6c1cf3d49;hpb=caf1416adb403b6334ce635e58b269b6c653aa39;p=chise%2Fxemacs-chise.git diff --git a/src/select-x.c b/src/select-x.c index 25bd52a..aea4aa4 100644 --- a/src/select-x.c +++ b/src/select-x.c @@ -1620,6 +1620,14 @@ Set the value of the named CUTBUFFER (typically CUT_BUFFER0) to STRING. continue; } +#ifdef UTF2000 + if ((*ptr) <= 0xC3) + { + chartypes = LATIN_1; + ptr += 2; + continue; + } +#else if ((*ptr) == LEADING_BYTE_LATIN_ISO8859_1 || (*ptr) == LEADING_BYTE_CONTROL_1) { @@ -1627,6 +1635,7 @@ Set the value of the named CUTBUFFER (typically CUT_BUFFER0) to STRING. ptr += 2; continue; } +#endif chartypes = WORLD; break;