From: Andreas Schwab Date: Fri, 21 Nov 1997 14:26:38 +0000 (+0000) Subject: Add declaration of word_boundary_p. X-Git-Tag: emacs-20.3~2768 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f78433b61e878acf9fe156b88b85a165d29d3a86;p=emacs.git Add declaration of word_boundary_p. --- 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; #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));