From: Stefan Monnier Date: Mon, 19 Nov 2001 22:46:42 +0000 (+0000) Subject: (describe_category): Add dummy arg. X-Git-Tag: ttn-vms-21-2-B4~18355 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9fd59de76532e8ab9b78029f24e4877049bfa265;p=emacs.git (describe_category): Add dummy arg. (describe_category_1): Update call to describe_vector. --- 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. */) /* Dump category table to buffer in human-readable format */ static void -describe_category (value) - Lisp_Object value; +describe_category (value, args) + Lisp_Object value, args; { Lisp_Object mnemonics; @@ -512,7 +512,7 @@ describe_category_1 (vector) { struct buffer *old = current_buffer; set_buffer_internal (XBUFFER (Vstandard_output)); - describe_vector (vector, Qnil, describe_category, 0, Qnil, Qnil, + describe_vector (vector, Qnil, Qnil, describe_category, 0, Qnil, Qnil, (int *)0, 0); { int i; @@ -544,7 +544,7 @@ describe_category_1 (vector) { vector = XCHAR_TABLE (vector)->parent; insert_string ("\nThe parent category table is:"); - describe_vector (vector, Qnil, describe_category, 0, Qnil, Qnil, + describe_vector (vector, Qnil, Qnil, describe_category, 0, Qnil, Qnil, (int *) 0, 0); }