From: Kenichi Handa Date: Sun, 28 Sep 2003 23:57:00 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-23.0.90~8295^2~1808 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7f04a736adf36a0acf38516fee883d7044c28ba4;p=emacs.git *** empty log message *** --- 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 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... 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 @@ +2003-09-28 Kenichi Handa + + * international/mule.el (define-coding-system): Fix attribute + name :for-unibyte. + 2003-09-11 Dave Love * 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; /* 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))