summaryrefslogtreecommitdiff
path: root/src/category.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-13 19:36:37 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-13 19:36:37 +0000
commit96439b6aabaca49a1fb43bf5d526e82f12b0924b (patch)
tree49af60a0760145bc39aee2455f495895fc4089f0 /src/category.c
parente41819d4800ef2d6a13ecd7c6acca087e16cd63a (diff)
downloademacs-96439b6aabaca49a1fb43bf5d526e82f12b0924b.tar.gz
(describe_category_1): Pass new args to describe_vector.
Diffstat (limited to 'src/category.c')
-rw-r--r--src/category.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/category.c b/src/category.c
index 1041e185877..18dd0df47c4 100644
--- a/src/category.c
+++ b/src/category.c
@@ -486,7 +486,8 @@ 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, describe_category, 0, Qnil, Qnil,
+ (int *)0, 0);
{
int i;
Lisp_Object docs = XCHAR_TABLE (vector)->extras[0];
@@ -516,7 +517,8 @@ 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, describe_category, 0, Qnil, Qnil,
+ (int *) 0, 0);
}
call0 (intern ("help-mode"));