From: Richard M. Stallman Date: Tue, 13 May 1997 19:36:15 +0000 (+0000) Subject: (describe_syntax_1): Pass new args to describe_vector. X-Git-Tag: emacs-20.1~2159 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e41819d4800ef2d6a13ecd7c6acca087e16cd63a;p=emacs.git (describe_syntax_1): Pass new args to describe_vector. --- diff --git a/src/syntax.c b/src/syntax.c index f396b24e087..27cbffd2853 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -933,12 +933,13 @@ describe_syntax_1 (vector) { 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"));