aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/category.c8
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
476static void 476static void
477describe_category (value) 477describe_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