diff options
| author | Kenichi Handa | 1997-02-27 07:47:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-02-27 07:47:24 +0000 |
| commit | 908b7fea57959f6ff21ffc05935640daac6c155a (patch) | |
| tree | 09015c9a4d05fbba02378e828abd0619ded536b6 /src | |
| parent | 5cb66ab8d62d740de1bec4a7935c67b2651c2598 (diff) | |
| download | emacs-908b7fea57959f6ff21ffc05935640daac6c155a.tar.gz emacs-908b7fea57959f6ff21ffc05935640daac6c155a.zip | |
(describe_syntax): Handle the case that the argument
VALUE is char-table.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c index b5d9c9a5b01..2ce4f85bc27 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -431,6 +431,12 @@ describe_syntax (value) | |||
| 431 | return; | 431 | return; |
| 432 | } | 432 | } |
| 433 | 433 | ||
| 434 | if (CHAR_TABLE_P (value)) | ||
| 435 | { | ||
| 436 | insert_string ("deeper char-table ...\n"); | ||
| 437 | return; | ||
| 438 | } | ||
| 439 | |||
| 434 | if (!CONSP (value)) | 440 | if (!CONSP (value)) |
| 435 | { | 441 | { |
| 436 | insert_string ("invalid\n"); | 442 | insert_string ("invalid\n"); |