From: Richard M. Stallman Date: Mon, 1 Sep 1997 17:54:37 +0000 (+0000) Subject: (describe_category): Handle a sub-chartable. X-Git-Tag: emacs-20.1~289 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cfcbf459e110dbf53aa619bc697bfaf462e60632;p=emacs.git (describe_category): Handle a sub-chartable. --- 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) return; } + if (CHAR_TABLE_P (value)) + { + insert_string ("deeper char-table ...\n"); + return; + } + if (!CATEGORY_SET_P (value)) { insert_string ("invalid\n");