From cfcbf459e110dbf53aa619bc697bfaf462e60632 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 1 Sep 1997 17:54:37 +0000 Subject: [PATCH] (describe_category): Handle a sub-chartable. --- src/category.c | 6 ++++++ 1 file changed, 6 insertions(+) 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"); -- 2.39.2