diff options
| author | Stefan Monnier | 2001-11-19 22:46:42 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-11-19 22:46:42 +0000 |
| commit | 9fd59de76532e8ab9b78029f24e4877049bfa265 (patch) | |
| tree | 53b45bebe14e00a219c229b72cce4a187dd7b6b1 | |
| parent | d55627cca4c7f07d2dab2037b740a1b2a29de125 (diff) | |
| download | emacs-9fd59de76532e8ab9b78029f24e4877049bfa265.tar.gz emacs-9fd59de76532e8ab9b78029f24e4877049bfa265.zip | |
(describe_category): Add dummy arg.
(describe_category_1): Update call to describe_vector.
| -rw-r--r-- | src/category.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/category.c b/src/category.c index d308b5a77c6..0c5eb3528e9 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -474,8 +474,8 @@ then delete CATEGORY from the category set instead of adding it. */) | |||
| 474 | /* Dump category table to buffer in human-readable format */ | 474 | /* Dump category table to buffer in human-readable format */ |
| 475 | 475 | ||
| 476 | static void | 476 | static void |
| 477 | describe_category (value) | 477 | describe_category (value, args) |
| 478 | Lisp_Object value; | 478 | Lisp_Object value, args; |
| 479 | { | 479 | { |
| 480 | Lisp_Object mnemonics; | 480 | Lisp_Object mnemonics; |
| 481 | 481 | ||
| @@ -512,7 +512,7 @@ describe_category_1 (vector) | |||
| 512 | { | 512 | { |
| 513 | struct buffer *old = current_buffer; | 513 | struct buffer *old = current_buffer; |
| 514 | set_buffer_internal (XBUFFER (Vstandard_output)); | 514 | set_buffer_internal (XBUFFER (Vstandard_output)); |
| 515 | describe_vector (vector, Qnil, describe_category, 0, Qnil, Qnil, | 515 | describe_vector (vector, Qnil, Qnil, describe_category, 0, Qnil, Qnil, |
| 516 | (int *)0, 0); | 516 | (int *)0, 0); |
| 517 | { | 517 | { |
| 518 | int i; | 518 | int i; |
| @@ -544,7 +544,7 @@ describe_category_1 (vector) | |||
| 544 | { | 544 | { |
| 545 | vector = XCHAR_TABLE (vector)->parent; | 545 | vector = XCHAR_TABLE (vector)->parent; |
| 546 | insert_string ("\nThe parent category table is:"); | 546 | insert_string ("\nThe parent category table is:"); |
| 547 | describe_vector (vector, Qnil, describe_category, 0, Qnil, Qnil, | 547 | describe_vector (vector, Qnil, Qnil, describe_category, 0, Qnil, Qnil, |
| 548 | (int *) 0, 0); | 548 | (int *) 0, 0); |
| 549 | } | 549 | } |
| 550 | 550 | ||