1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 07:41:28 -08:00

(describe_category): Handle a sub-chartable.

This commit is contained in:
Richard M. Stallman 1997-09-01 17:54:37 +00:00
parent 37c0ed09e7
commit cfcbf459e1

View file

@ -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");