mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
(CATEGORY_DOCSTRING): Convert Fchar_table_extra_slot
argument to Lisp_Integer. (CATEGORY_TABLE_VERSION): Likewise.
This commit is contained in:
parent
6703ac4f59
commit
ea625b14ae
1 changed files with 2 additions and 2 deletions
|
|
@ -119,12 +119,12 @@ extern Lisp_Object _temp_category_set;
|
|||
|
||||
/* Return the doc string of CATEGORY in category table TABLE. */
|
||||
#define CATEGORY_DOCSTRING(table, category) \
|
||||
XVECTOR (Fchar_table_extra_slot (table, 0))->contents[(category) - ' ']
|
||||
XVECTOR (Fchar_table_extra_slot (table, make_number (0)))->contents[(category) - ' ']
|
||||
|
||||
/* Return the version number of category table TABLE. Not used for
|
||||
the moment. */
|
||||
#define CATEGORY_TABLE_VERSION (table) \
|
||||
Fchar_table_extra_slot (table, 1)
|
||||
Fchar_table_extra_slot (table, make_number (1))
|
||||
|
||||
/* Return 1 if there is a word boundary between two word-constituent
|
||||
characters C1 and C2 if they appear in this order, else return 0.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue