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
91f64ec2
Commit
91f64ec2
authored
Oct 26, 1996
by
Richard M. Stallman
Browse files
(describe_buffer_bindings): Pass 1 for PARTIAL
in some calls to describe_map_tree.
parent
0ad61fe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/keymap.c
src/keymap.c
+3
-3
No files found.
src/keymap.c
View file @
91f64ec2
...
...
@@ -2068,7 +2068,7 @@ nominal alternate\n\
p
+=
sizeof
(
" Minor Mode Bindings"
)
-
1
;
*
p
=
0
;
describe_map_tree
(
maps
[
i
],
0
,
shadow
,
prefix
,
title
,
0
,
0
,
0
);
describe_map_tree
(
maps
[
i
],
1
,
shadow
,
prefix
,
title
,
0
,
0
,
0
);
shadow
=
Fcons
(
maps
[
i
],
shadow
);
}
}
...
...
@@ -2083,12 +2083,12 @@ nominal alternate\n\
if
(
!
NILP
(
start1
))
{
describe_map_tree
(
start1
,
0
,
shadow
,
prefix
,
describe_map_tree
(
start1
,
1
,
shadow
,
prefix
,
"Major Mode Bindings"
,
0
,
0
,
0
);
shadow
=
Fcons
(
start1
,
shadow
);
}
describe_map_tree
(
current_global_map
,
0
,
shadow
,
prefix
,
describe_map_tree
(
current_global_map
,
1
,
shadow
,
prefix
,
"Global Bindings"
,
0
,
0
,
1
);
/* Print the function-key-map translations under this prefix. */
...
...
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