changeset 17786:90d9682afa28

(describe_syntax_1): Pass new args to describe_vector.
author Richard M. Stallman <rms@gnu.org>
date Tue, 13 May 1997 19:36:15 +0000
parents 5b92f8ba5c6d
children eacf563a6d0d
files src/syntax.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/syntax.c	Tue May 13 09:38:23 1997 +0000
+++ b/src/syntax.c	Tue May 13 19:36:15 1997 +0000
@@ -933,12 +933,13 @@
 {
   struct buffer *old = current_buffer;
   set_buffer_internal (XBUFFER (Vstandard_output));
-  describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil);
+  describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil, (int *) 0, 0);
   while (! NILP (XCHAR_TABLE (vector)->parent))
     {
       vector = XCHAR_TABLE (vector)->parent;
       insert_string ("\nThe parent syntax table is:");
-      describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil);
+      describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil,
+		       (int *) 0, 0);
     }
 	
   call0 (intern ("help-mode"));