diff options
| author | Richard M. Stallman | 1997-09-01 17:54:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-09-01 17:54:37 +0000 |
| commit | cfcbf459e110dbf53aa619bc697bfaf462e60632 (patch) | |
| tree | bd5face502956b2fc363897289ff3ee392d5f336 /src | |
| parent | 37c0ed09e7005ee18546f62d9468f1093297a4f9 (diff) | |
| download | emacs-cfcbf459e110dbf53aa619bc697bfaf462e60632.tar.gz emacs-cfcbf459e110dbf53aa619bc697bfaf462e60632.zip | |
(describe_category): Handle a sub-chartable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/category.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/category.c b/src/category.c index f63b65e1301..5a3507e985f 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -467,6 +467,12 @@ describe_category (value) | |||
| 467 | return; | 467 | return; |
| 468 | } | 468 | } |
| 469 | 469 | ||
| 470 | if (CHAR_TABLE_P (value)) | ||
| 471 | { | ||
| 472 | insert_string ("deeper char-table ...\n"); | ||
| 473 | return; | ||
| 474 | } | ||
| 475 | |||
| 470 | if (!CATEGORY_SET_P (value)) | 476 | if (!CATEGORY_SET_P (value)) |
| 471 | { | 477 | { |
| 472 | insert_string ("invalid\n"); | 478 | insert_string ("invalid\n"); |