changeset 17109:dfe4f98935c4

(describe_syntax): Handle the case that the argument VALUE is char-table.
author Kenichi Handa <handa@m17n.org>
date Thu, 27 Feb 1997 07:47:24 +0000
parents 259e3e73a4b5
children 3a348cbb354f
files src/syntax.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/syntax.c	Thu Feb 27 07:46:33 1997 +0000
+++ b/src/syntax.c	Thu Feb 27 07:47:24 1997 +0000
@@ -431,6 +431,12 @@
       return;
     }
 
+  if (CHAR_TABLE_P (value))
+    {
+      insert_string ("deeper char-table ...\n");
+      return;
+    }
+
   if (!CONSP (value))
     {
       insert_string ("invalid\n");