diff options
author | Kenichi Handa <handa@m17n.org> | 2003-09-28 23:57:00 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-09-28 23:57:00 +0000 |
commit | 7f04a736adf36a0acf38516fee883d7044c28ba4 (patch) | |
tree | 364a49c354e9d1f7571098dc42cad092005f5fdf /src/category.h | |
parent | 7e742024ccaacd46191c828380dc35ae056a4ab2 (diff) | |
download | emacs-7f04a736adf36a0acf38516fee883d7044c28ba4.tar.gz emacs-7f04a736adf36a0acf38516fee883d7044c28ba4.tar.bz2 emacs-7f04a736adf36a0acf38516fee883d7044c28ba4.zip |
*** empty log message ***
Diffstat (limited to 'src/category.h')
-rw-r--r-- | src/category.h | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |