1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-27 19:31:38 +00:00

Add declaration of word_boundary_p.

This commit is contained in:
Andreas Schwab 1997-11-21 14:26:38 +00:00
parent 4b7610a9ff
commit f78433b61e

View File

@ -133,3 +133,5 @@ extern Lisp_Object _temp_category_set;
#define WORD_BOUNDARY_P(c1, c2) \ #define WORD_BOUNDARY_P(c1, c2) \
(!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \ (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \
&& word_boundary_p (c1, c2)) && word_boundary_p (c1, c2))
extern int word_boundary_p P_ ((int, int));