Mercurial > emacs
comparison src/syntax.c @ 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 | aefc22e52046 |
| children | 5fbb5aef5649 |
comparison
equal
deleted
inserted
replaced
| 17785:5b92f8ba5c6d | 17786:90d9682afa28 |
|---|---|
| 931 describe_syntax_1 (vector) | 931 describe_syntax_1 (vector) |
| 932 Lisp_Object vector; | 932 Lisp_Object 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")); |
| 945 set_buffer_internal (old); | 946 set_buffer_internal (old); |
| 946 return Qnil; | 947 return Qnil; |
