]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe_buffer_bindings): Pass 1 for PARTIAL
authorRichard M. Stallman <rms@gnu.org>
Sat, 26 Oct 1996 16:01:22 +0000 (16:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 26 Oct 1996 16:01:22 +0000 (16:01 +0000)
in some calls to describe_map_tree.

src/keymap.c

index e2a1b97c9dafc02f11d35a36ae1ccb55208b249e..3443b71ef5187ed143f5ebef9674a379e4dac211 100644 (file)
@@ -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.  */