diff options
| author | Richard M. Stallman | 1997-05-13 19:36:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-13 19:36:15 +0000 |
| commit | e41819d4800ef2d6a13ecd7c6acca087e16cd63a (patch) | |
| tree | d9eafe962e966b28cecd8693ba97eb4c1584b9be /src/syntax.c | |
| parent | b7e22e944240f07f7f6950453c3f1f0bfe14e748 (diff) | |
| download | emacs-e41819d4800ef2d6a13ecd7c6acca087e16cd63a.tar.gz emacs-e41819d4800ef2d6a13ecd7c6acca087e16cd63a.zip | |
(describe_syntax_1): Pass new args to describe_vector.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) | |||
| 933 | { | 933 | { |
| 934 | struct buffer *old = current_buffer; | 934 | struct buffer *old = current_buffer; |
| 935 | set_buffer_internal (XBUFFER (Vstandard_output)); | 935 | set_buffer_internal (XBUFFER (Vstandard_output)); |
| 936 | describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil); | 936 | describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil, (int *) 0, 0); |
| 937 | while (! NILP (XCHAR_TABLE (vector)->parent)) | 937 | while (! NILP (XCHAR_TABLE (vector)->parent)) |
| 938 | { | 938 | { |
| 939 | vector = XCHAR_TABLE (vector)->parent; | 939 | vector = XCHAR_TABLE (vector)->parent; |
| 940 | insert_string ("\nThe parent syntax table is:"); | 940 | insert_string ("\nThe parent syntax table is:"); |
| 941 | describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil); | 941 | describe_vector (vector, Qnil, describe_syntax, 0, Qnil, Qnil, |
| 942 | (int *) 0, 0); | ||
| 942 | } | 943 | } |
| 943 | 944 | ||
| 944 | call0 (intern ("help-mode")); | 945 | call0 (intern ("help-mode")); |