# HG changeset patch # User Chong Yidong # Date 1208302562 0 # Node ID 3c7025ac9e2c9ccc7a7e0ad4508e94fa893c26c0 # Parent 92847a340dc4589ee9b4528eec4262ec7910e865 (read_key_sequence): Remove always-true checks. diff -r 92847a340dc4 -r 3c7025ac9e2c src/keyboard.c --- a/src/keyboard.c Tue Apr 15 23:35:01 2008 +0000 +++ b/src/keyboard.c Tue Apr 15 23:36:02 2008 +0000 @@ -9323,8 +9323,7 @@ defs = (Lisp_Object *) alloca (2 * sizeof (defs[0])); nmaps_allocated = 2; } - if (!NILP (current_kboard->Voverriding_terminal_local_map)) - submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map; + submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map; } else if (!NILP (Voverriding_local_map)) { @@ -9334,8 +9333,7 @@ defs = (Lisp_Object *) alloca (2 * sizeof (defs[0])); nmaps_allocated = 2; } - if (!NILP (Voverriding_local_map)) - submaps[nmaps++] = Voverriding_local_map; + submaps[nmaps++] = Voverriding_local_map; } else {