*** empty log message ***

This commit is contained in:
Kenichi Handa 2003-09-28 23:57:00 +00:00
parent 7e742024cc
commit 7f04a736ad
3 changed files with 7 additions and 4 deletions

View 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...

View 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

View 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))