diff options
| author | Richard M. Stallman | 1996-10-26 16:01:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-10-26 16:01:22 +0000 |
| commit | 91f64ec29e66f9239efb428f25fab738ce2f70cc (patch) | |
| tree | 6f79ee8dc1e9210cad9859974326327ab73dabab /src/keymap.c | |
| parent | 0ad61fe7d7c6f00679cbfafedc3e294a88c80fdb (diff) | |
| download | emacs-91f64ec29e66f9239efb428f25fab738ce2f70cc.tar.gz emacs-91f64ec29e66f9239efb428f25fab738ce2f70cc.zip | |
(describe_buffer_bindings): Pass 1 for PARTIAL
in some calls to describe_map_tree.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c index e2a1b97c9da..3443b71ef51 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2068,7 +2068,7 @@ nominal alternate\n\ | |||
| 2068 | p += sizeof (" Minor Mode Bindings") - 1; | 2068 | p += sizeof (" Minor Mode Bindings") - 1; |
| 2069 | *p = 0; | 2069 | *p = 0; |
| 2070 | 2070 | ||
| 2071 | describe_map_tree (maps[i], 0, shadow, prefix, title, 0, 0, 0); | 2071 | describe_map_tree (maps[i], 1, shadow, prefix, title, 0, 0, 0); |
| 2072 | shadow = Fcons (maps[i], shadow); | 2072 | shadow = Fcons (maps[i], shadow); |
| 2073 | } | 2073 | } |
| 2074 | } | 2074 | } |
| @@ -2083,12 +2083,12 @@ nominal alternate\n\ | |||
| 2083 | 2083 | ||
| 2084 | if (!NILP (start1)) | 2084 | if (!NILP (start1)) |
| 2085 | { | 2085 | { |
| 2086 | describe_map_tree (start1, 0, shadow, prefix, | 2086 | describe_map_tree (start1, 1, shadow, prefix, |
| 2087 | "Major Mode Bindings", 0, 0, 0); | 2087 | "Major Mode Bindings", 0, 0, 0); |
| 2088 | shadow = Fcons (start1, shadow); | 2088 | shadow = Fcons (start1, shadow); |
| 2089 | } | 2089 | } |
| 2090 | 2090 | ||
| 2091 | describe_map_tree (current_global_map, 0, shadow, prefix, | 2091 | describe_map_tree (current_global_map, 1, shadow, prefix, |
| 2092 | "Global Bindings", 0, 0, 1); | 2092 | "Global Bindings", 0, 0, 1); |
| 2093 | 2093 | ||
| 2094 | /* Print the function-key-map translations under this prefix. */ | 2094 | /* Print the function-key-map translations under this prefix. */ |