# HG changeset patch # User Andreas Schwab # Date 880122398 0 # Node ID a98f18d91045528992ee0416a007d97c2fd9ba5e # Parent a385b772f45390578efb6e685066f9c6247de637 Add declaration of word_boundary_p. diff -r a385b772f453 -r a98f18d91045 src/category.h --- a/src/category.h Fri Nov 21 14:19:57 1997 +0000 +++ b/src/category.h Fri Nov 21 14:26:38 1997 +0000 @@ -133,3 +133,5 @@ #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));