]> git.eshelyaron.com Git - emacs.git/commitdiff
Add declaration of word_boundary_p.
authorAndreas Schwab <schwab@suse.de>
Fri, 21 Nov 1997 14:26:38 +0000 (14:26 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 21 Nov 1997 14:26:38 +0000 (14:26 +0000)
src/category.h

index f1c40f9cff0ab71e813ae547c76b64ac4302c7b3..5129d16aa2e76dc701e71998f6847a3826751b14 100644 (file)
@@ -133,3 +133,5 @@ extern Lisp_Object _temp_category_set;
 #define WORD_BOUNDARY_P(c1, c2)                                        \
   (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2))       \
    && word_boundary_p (c1, c2))
+
+extern int word_boundary_p P_ ((int, int));