diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-04-03 21:29:26 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-04-03 21:29:26 +0000 |
commit | f7d47e20236f69df265cae6bacb4626180d3e55d (patch) | |
tree | dab5daa1595b573d9dd5e93e9a1d810e00ab46dd /src/category.h | |
parent | d1b9ed63ea460326f8cad94e6a9a34055a79f803 (diff) | |
download | emacs-f7d47e20236f69df265cae6bacb4626180d3e55d.tar.gz |
[!__GNUC__] (CATEGORY_SET): Fix syntax error.
Diffstat (limited to 'src/category.h')
-rw-r--r-- | src/category.h | 2 |
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; ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \ ? Faref (current_buffer->category_table, make_number ((unsigned char) c)) \ : Faref (current_buffer->category_table, \ - COMPOSITE_CHAR_P (c) ? cmpchar_component ((c), 0) : (c)) + COMPOSITE_CHAR_P (c) ? cmpchar_component ((c), 0) : (c))) #endif /* Return the doc string of CATEGORY in category table TABLE. */ |