1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

(SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT): Avoid

compiler warnings.
This commit is contained in:
Eli Zaretskii 2004-05-02 18:46:39 +00:00
parent 1644f4e408
commit 06a18d94f7

View File

@ -58,7 +58,7 @@ enum syntaxcode
/* Set the syntax entry VAL for char C in table TABLE. */
#define SET_RAW_SYNTAX_ENTRY(table, c, val) \
((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \
((((c) & 0xFF) == (c)) \
? (XCHAR_TABLE (table)->contents[(unsigned char) (c)] = (val)) \
: Faset ((table), make_number (c), (val)))
@ -106,7 +106,7 @@ extern Lisp_Object syntax_parent_lookup P_ ((Lisp_Object, int));
#endif
#define SYNTAX_ENTRY_INT(c) \
((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS \
((((c) & 0xFF) == (c)) \
? SYNTAX_ENTRY_FOLLOW_PARENT (CURRENT_SYNTAX_TABLE, \
(unsigned char) (c)) \
: Faref (CURRENT_SYNTAX_TABLE, \