aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-10-26 16:01:22 +0000
committerRichard M. Stallman <[email protected]>1996-10-26 16:01:22 +0000
commit91f64ec29e66f9239efb428f25fab738ce2f70cc (patch)
tree6f79ee8dc1e9210cad9859974326327ab73dabab /src
parent0ad61fe7d7c6f00679cbfafedc3e294a88c80fdb (diff)
(describe_buffer_bindings): Pass 1 for PARTIAL
in some calls to describe_map_tree.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c
index e2a1b97c9d..3443b71ef5 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -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. */