Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
96439b6a
Commit
96439b6a
authored
May 13, 1997
by
Richard M. Stallman
Browse files
(describe_category_1): Pass new args to describe_vector.
parent
e41819d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/category.c
src/category.c
+4
-2
No files found.
src/category.c
View file @
96439b6a
...
...
@@ -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
(
"
\n
The 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"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment