diff options
| author | Kenichi Handa | 2002-03-05 00:09:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-03-05 00:09:36 +0000 |
| commit | dcb82a5edf4d4be34ee566452f528f99df70eb68 (patch) | |
| tree | 3cc8d4b1a1c4bd7c76420ff5cdf43bb30ce775a6 /src | |
| parent | 1c157f8ddc376ed384e7c990c80de72dea23bd3e (diff) | |
| download | emacs-dcb82a5edf4d4be34ee566452f528f99df70eb68.tar.gz emacs-dcb82a5edf4d4be34ee566452f528f99df70eb68.zip | |
(SET_RAW_SYNTAX_ENTRY): Don't call make_number.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.h b/src/syntax.h index 37fe06808c0..d323e85b233 100644 --- a/src/syntax.h +++ b/src/syntax.h | |||
| @@ -58,7 +58,7 @@ enum syntaxcode | |||
| 58 | /* Set the syntax entry VAL for char C in table TABLE. */ | 58 | /* Set the syntax entry VAL for char C in table TABLE. */ |
| 59 | 59 | ||
| 60 | #define SET_RAW_SYNTAX_ENTRY(table, c, val) \ | 60 | #define SET_RAW_SYNTAX_ENTRY(table, c, val) \ |
| 61 | CHAR_TABLE_SET ((table), make_number (c), (val)) | 61 | CHAR_TABLE_SET ((table), c, (val)) |
| 62 | 62 | ||
| 63 | /* Set the syntax entry VAL for char-range RANGE in table TABLE. | 63 | /* Set the syntax entry VAL for char-range RANGE in table TABLE. |
| 64 | RANGE is a cons (FROM . TO) specifying the range of characters. */ | 64 | RANGE is a cons (FROM . TO) specifying the range of characters. */ |