aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-04-03 21:29:26 +0000
committerKarl Heuer1997-04-03 21:29:26 +0000
commitf7d47e20236f69df265cae6bacb4626180d3e55d (patch)
treedab5daa1595b573d9dd5e93e9a1d810e00ab46dd
parentd1b9ed63ea460326f8cad94e6a9a34055a79f803 (diff)
downloademacs-f7d47e20236f69df265cae6bacb4626180d3e55d.tar.gz
emacs-f7d47e20236f69df265cae6bacb4626180d3e55d.zip
[!__GNUC__] (CATEGORY_SET): Fix syntax error.
-rw-r--r--src/category.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.h b/src/category.h
index f475928b0a4..42c0808bac0 100644
--- a/src/category.h
+++ b/src/category.h
@@ -114,7 +114,7 @@ extern Lisp_Object _temp_category_set;
114 ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \ 114 ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \
115 ? Faref (current_buffer->category_table, make_number ((unsigned char) c)) \ 115 ? Faref (current_buffer->category_table, make_number ((unsigned char) c)) \
116 : Faref (current_buffer->category_table, \ 116 : Faref (current_buffer->category_table, \
117 COMPOSITE_CHAR_P (c) ? cmpchar_component ((c), 0) : (c)) 117 COMPOSITE_CHAR_P (c) ? cmpchar_component ((c), 0) : (c)))
118#endif 118#endif
119 119
120/* Return the doc string of CATEGORY in category table TABLE. */ 120/* Return the doc string of CATEGORY in category table TABLE. */