From: Kenichi Handa Date: Thu, 27 Feb 1997 07:47:24 +0000 (+0000) Subject: (describe_syntax): Handle the case that the argument X-Git-Tag: emacs-20.1~2836 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=908b7fea57959f6ff21ffc05935640daac6c155a;p=emacs.git (describe_syntax): Handle the case that the argument VALUE is char-table. --- 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) return; } + if (CHAR_TABLE_P (value)) + { + insert_string ("deeper char-table ...\n"); + return; + } + if (!CONSP (value)) { insert_string ("invalid\n");