Mercurial > emacs
changeset 16465:398e3995162d
(describe_buffer_bindings): Pass 1 for PARTIAL
in some calls to describe_map_tree.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 26 Oct 1996 16:01:22 +0000 |
parents | c1f19d8e5b80 |
children | 2c5c58435c00 |
files | src/keymap.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keymap.c Sat Oct 26 16:01:03 1996 +0000 +++ b/src/keymap.c Sat Oct 26 16:01:22 1996 +0000 @@ -2068,7 +2068,7 @@ 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 @@ 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. */