1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-03 04:21:28 -08:00

(keymap_panes): Pass the keymap's prompt as the pane

name to single_keymap_panes.
This commit is contained in:
Eli Zaretskii 2000-07-24 15:11:52 +00:00
parent 7d0b202fbf
commit 488205c001

View file

@ -380,7 +380,8 @@ keymap_panes (keymaps, nmaps, notreal)
But don't make a pane that is empty--ignore that map instead.
P is the number of panes we have made so far. */
for (mapno = 0; mapno < nmaps; mapno++)
single_keymap_panes (keymaps[mapno], Qnil, Qnil, notreal, 10);
single_keymap_panes (keymaps[mapno],
map_prompt (keymaps[mapno]), Qnil, notreal, 10);
finish_menu_items ();
}