emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/category.c


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/category.c
Date: Mon, 19 Nov 2001 17:46:42 -0500

Index: emacs/src/category.c
diff -u emacs/src/category.c:1.28 emacs/src/category.c:1.29
--- emacs/src/category.c:1.28   Tue Nov 13 23:49:55 2001
+++ emacs/src/category.c        Mon Nov 19 17:46:42 2001
@@ -474,8 +474,8 @@
 /* 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 @@
 {
   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 @@
     {
       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);
     }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]