diff options
Diffstat (limited to 'src')
| -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")); |