aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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;
111 111
112/* Return 1 if there is a word boundary between two word-constituent 112/* Return 1 if there is a word boundary between two word-constituent
113 characters C1 and C2 if they appear in this order, else return 0. 113 characters C1 and C2 if they appear in this order, else return 0.
114 There is no word boundary between two word-constituent ASCII 114 There is no word boundary between two word-constituent ASCII and
115 characters. */ 115 Latin-1 characters. */
116#define WORD_BOUNDARY_P(c1, c2) \ 116#define WORD_BOUNDARY_P(c1, c2) \
117 (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \ 117 (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \
118 && word_boundary_p (c1, c2)) 118 && word_boundary_p (c1, c2))