Minor simplification in Fdescribe_buffer_bindings
* src/keymap.c (Fdescribe_buffer_bindings): Minor simplification.
This commit is contained in:
parent
bc1090145c
commit
2a405cb897
1 changed files with 2 additions and 4 deletions
|
@ -2866,7 +2866,7 @@ You type Translation\n\
|
|||
if (alternate_heading)
|
||||
{
|
||||
insert_string (alternate_heading);
|
||||
alternate_heading = 0;
|
||||
alternate_heading = NULL;
|
||||
}
|
||||
|
||||
bufend = push_key_description (translate[c], buf);
|
||||
|
@ -2893,9 +2893,7 @@ You type Translation\n\
|
|||
}
|
||||
|
||||
/* Print the (major mode) local map. */
|
||||
Lisp_Object start1 = Qnil;
|
||||
if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
|
||||
start1 = KVAR (current_kboard, Voverriding_terminal_local_map);
|
||||
Lisp_Object start1 = KVAR (current_kboard, Voverriding_terminal_local_map);
|
||||
|
||||
if (!NILP (start1))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue