summaryrefslogtreecommitdiff
path: root/src/category.h
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2003-09-28 23:57:00 +0000
committerKenichi Handa <handa@m17n.org>2003-09-28 23:57:00 +0000
commit7f04a736adf36a0acf38516fee883d7044c28ba4 (patch)
tree364a49c354e9d1f7571098dc42cad092005f5fdf /src/category.h
parent7e742024ccaacd46191c828380dc35ae056a4ab2 (diff)
downloademacs-7f04a736adf36a0acf38516fee883d7044c28ba4.tar.gz
*** empty log message ***
Diffstat (limited to 'src/category.h')
-rw-r--r--src/category.h4
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))