summaryrefslogtreecommitdiff
path: root/src/category.h
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1997-11-21 14:26:38 +0000
committerAndreas Schwab <schwab@suse.de>1997-11-21 14:26:38 +0000
commit4082ec5e11137ef13a9b99488d42de94a9ec8cdc (patch)
treeea53c5d92e2f1631db1daa77b23fbc87284be5b0 /src/category.h
parent8dd93ec8900d0f5b1f86c696dc1c0b5723217d3a (diff)
downloademacs-4082ec5e11137ef13a9b99488d42de94a9ec8cdc.tar.gz
Add declaration of word_boundary_p.
Diffstat (limited to 'src/category.h')
-rw-r--r--src/category.h2
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;
#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));