diff options
| author | Andreas Schwab | 1997-11-21 14:26:38 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1997-11-21 14:26:38 +0000 |
| commit | f78433b61e878acf9fe156b88b85a165d29d3a86 (patch) | |
| tree | a9c9f35cde1eb34fe7944bce680fdfea4ae5f569 /src | |
| parent | 4b7610a9ff12b8a5df9247bb2451c430fadd88cf (diff) | |
| download | emacs-f78433b61e878acf9fe156b88b85a165d29d3a86.tar.gz emacs-f78433b61e878acf9fe156b88b85a165d29d3a86.zip | |
Add declaration of word_boundary_p.
Diffstat (limited to 'src')
| -rw-r--r-- | src/category.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/category.h b/src/category.h index f1c40f9cff0..5129d16aa2e 100644 --- a/src/category.h +++ b/src/category.h | |||
| @@ -133,3 +133,5 @@ extern Lisp_Object _temp_category_set; | |||
| 133 | #define WORD_BOUNDARY_P(c1, c2) \ | 133 | #define WORD_BOUNDARY_P(c1, c2) \ |
| 134 | (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \ | 134 | (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \ |
| 135 | && word_boundary_p (c1, c2)) | 135 | && word_boundary_p (c1, c2)) |
| 136 | |||
| 137 | extern int word_boundary_p P_ ((int, int)); | ||