projects
/
chise
/
xemacs-chise.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d955fe
)
(Fx_store_cutbuffer_internal): Modify for UTF-2000.
author
tomo
<tomo>
Fri, 9 Jun 2000 09:21:29 +0000
(09:21 +0000)
committer
tomo
<tomo>
Fri, 9 Jun 2000 09:21:29 +0000
(09:21 +0000)
src/select-x.c
patch
|
blob
|
history
diff --git
a/src/select-x.c
b/src/select-x.c
index
a2c41c2
..
6e1f344
100644
(file)
--- a/
src/select-x.c
+++ b/
src/select-x.c
@@
-1597,6
+1597,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)
{
@@
-1604,6
+1612,7
@@
Set the value of the named CUTBUFFER (typically CUT_BUFFER0) to STRING.
ptr += 2;
continue;
}
+#endif
chartypes = WORLD;
break;