Mercurial > emacs
changeset 41295:21cf5cfce29a
(describe_syntax): Add dummy arg.
(describe_syntax_1): Update call to describe_vector.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 19 Nov 2001 22:46:47 +0000 |
parents | 6e7061ac43fd |
children | a2db3c620715 |
files | src/syntax.c |
diffstat | 1 files changed, 6 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Mon Nov 19 22:46:42 2001 +0000 +++ b/src/syntax.c Mon Nov 19 22:46:47 2001 +0000 @@ -1173,8 +1173,8 @@ static void -describe_syntax (value) - Lisp_Object value; +describe_syntax (value, args) + Lisp_Object value, args; { Findent_to (make_number (16), make_number (1)); Finternal_describe_syntax_value (value); @@ -1188,13 +1188,14 @@ { struct buffer *old = current_buffer; set_buffer_internal (XBUFFER (Vstandard_output)); - describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil, (int *) 0, 0); + describe_vector (vector, Qnil, Qnil, describe_syntax, + 0, Qnil, Qnil, NULL, 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, - (int *) 0, 0); + describe_vector (vector, Qnil, Qnil, describe_syntax, + 0, Qnil, Qnil, NULL, 0); } call0 (intern ("help-mode"));