changeset 89540:00740a07ad9a

*** empty log message ***
author Kenichi Handa <handa@m17n.org>
date Sun, 28 Sep 2003 23:57:00 +0000
parents 681ad4b7421f
children 148a846dccfd
files README.unicode lisp/ChangeLog.22 src/category.h
diffstat 3 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/README.unicode	Sun Sep 28 23:56:11 2003 +0000
+++ b/README.unicode	Sun Sep 28 23:57:00 2003 +0000
@@ -119,8 +119,6 @@
    files need sorting out, but rms says Babyl will go before this is
    released.
 
- * ps-print won't work with non-ASCII text.  ps-mule needs rework.
-
  * Gnus still needs some attention, and we need to get changes
    accepted by Gnus maintainers...
 
--- a/lisp/ChangeLog.22	Sun Sep 28 23:56:11 2003 +0000
+++ b/lisp/ChangeLog.22	Sun Sep 28 23:57:00 2003 +0000
@@ -1,3 +1,8 @@
+2003-09-28  Kenichi Handa  <handa@m17n.org>
+
+	* international/mule.el (define-coding-system): Fix attribute
+	name :for-unibyte.
+
 2003-09-11  Dave Love  <fx@gnu.org>
 
 	* international/mule-util.el
--- a/src/category.h	Sun Sep 28 23:56:11 2003 +0000
+++ b/src/category.h	Sun Sep 28 23:57:00 2003 +0000
@@ -111,8 +111,8 @@
 
 /* Return 1 if there is a word boundary between two word-constituent
    characters C1 and C2 if they appear in this order, else return 0.
-   There is no word boundary between two word-constituent ASCII
-   characters.  */
+   There is no word boundary between two word-constituent ASCII and
+   Latin-1 characters.  */
 #define WORD_BOUNDARY_P(c1, c2)					\
   (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2))	\
    && word_boundary_p (c1, c2))