(describe_syntax): Handle the case that the argument
authorKenichi Handa <handa@m17n.org>
Thu, 27 Feb 1997 07:47:24 +0000 (07:47 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 27 Feb 1997 07:47:24 +0000 (07:47 +0000)
VALUE is char-table.

src/syntax.c

index b5d9c9a..2ce4f85 100644 (file)
@@ -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");