aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-09-28 23:57:00 +0000
committerKenichi Handa2003-09-28 23:57:00 +0000
commit7f04a736adf36a0acf38516fee883d7044c28ba4 (patch)
tree364a49c354e9d1f7571098dc42cad092005f5fdf
parent7e742024ccaacd46191c828380dc35ae056a4ab2 (diff)
downloademacs-7f04a736adf36a0acf38516fee883d7044c28ba4.tar.gz
emacs-7f04a736adf36a0acf38516fee883d7044c28ba4.zip
*** empty log message ***
-rw-r--r--README.unicode2
-rw-r--r--lisp/ChangeLog.225
-rw-r--r--src/category.h4
3 files changed, 7 insertions, 4 deletions
diff --git a/README.unicode b/README.unicode
index 5504bc27dbf..1812f21f724 100644
--- a/README.unicode
+++ b/README.unicode
@@ -119,8 +119,6 @@ existing support and the extra stuff at
119 files need sorting out, but rms says Babyl will go before this is 119 files need sorting out, but rms says Babyl will go before this is
120 released. 120 released.
121 121
122 * ps-print won't work with non-ASCII text. ps-mule needs rework.
123
124 * Gnus still needs some attention, and we need to get changes 122 * Gnus still needs some attention, and we need to get changes
125 accepted by Gnus maintainers... 123 accepted by Gnus maintainers...
126 124
diff --git a/lisp/ChangeLog.22 b/lisp/ChangeLog.22
index 478e800ef0b..3d531da5945 100644
--- a/lisp/ChangeLog.22
+++ b/lisp/ChangeLog.22
@@ -1,3 +1,8 @@
12003-09-28 Kenichi Handa <handa@m17n.org>
2
3 * international/mule.el (define-coding-system): Fix attribute
4 name :for-unibyte.
5
12003-09-11 Dave Love <fx@gnu.org> 62003-09-11 Dave Love <fx@gnu.org>
2 7
3 * international/mule-util.el 8 * international/mule-util.el
diff --git a/src/category.h b/src/category.h
index 0b909de7ddb..f2335664acf 100644
--- a/src/category.h
+++ b/src/category.h
@@ -111,8 +111,8 @@ extern Lisp_Object _temp_category_set;
111 111
112/* Return 1 if there is a word boundary between two word-constituent 112/* Return 1 if there is a word boundary between two word-constituent
113 characters C1 and C2 if they appear in this order, else return 0. 113 characters C1 and C2 if they appear in this order, else return 0.
114 There is no word boundary between two word-constituent ASCII 114 There is no word boundary between two word-constituent ASCII and
115 characters. */ 115 Latin-1 characters. */
116#define WORD_BOUNDARY_P(c1, c2) \ 116#define WORD_BOUNDARY_P(c1, c2) \
117 (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \ 117 (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \
118 && word_boundary_p (c1, c2)) 118 && word_boundary_p (c1, c2))