diff options
| author | Kenichi Handa | 2003-09-28 23:57:00 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-09-28 23:57:00 +0000 |
| commit | 7f04a736adf36a0acf38516fee883d7044c28ba4 (patch) | |
| tree | 364a49c354e9d1f7571098dc42cad092005f5fdf /src | |
| parent | 7e742024ccaacd46191c828380dc35ae056a4ab2 (diff) | |
| download | emacs-7f04a736adf36a0acf38516fee883d7044c28ba4.tar.gz emacs-7f04a736adf36a0acf38516fee883d7044c28ba4.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -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; | |||
| 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)) |