]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKenichi Handa <handa@m17n.org>
Sun, 28 Sep 2003 23:57:00 +0000 (23:57 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 28 Sep 2003 23:57:00 +0000 (23:57 +0000)
README.unicode
lisp/ChangeLog.22
src/category.h

index 5504bc27dbfcec5129b994e24e22447cdec18307..1812f21f724fb6a83df5609eda5b6357f358881c 100644 (file)
@@ -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...
 
index 478e800ef0b4e6f31bcdcf3472a6b9982277a3f9..3d531da594539bc8ecf8266ddfe8624c6027813e 100644 (file)
@@ -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
index 0b909de7ddb254e01157f860b747585599a983e0..f2335664acfb9b48c6e60972f526156abc122dc6 100644 (file)
@@ -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))