aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2008-04-15 23:36:02 +0000
committerChong Yidong2008-04-15 23:36:02 +0000
commit07024c436a731767ce80f7885ee393d6dae3aab9 (patch)
treeee9a973e6bc3e6fdb493fcd9c64c950cb3471269 /src
parent8ad7b280eafffb86987f75f24d5d0f609b42f11b (diff)
downloademacs-07024c436a731767ce80f7885ee393d6dae3aab9.tar.gz
emacs-07024c436a731767ce80f7885ee393d6dae3aab9.zip
(read_key_sequence): Remove always-true checks.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index bb65acbbde7..64427992a83 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -9323,8 +9323,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
9323 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0])); 9323 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
9324 nmaps_allocated = 2; 9324 nmaps_allocated = 2;
9325 } 9325 }
9326 if (!NILP (current_kboard->Voverriding_terminal_local_map)) 9326 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
9327 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
9328 } 9327 }
9329 else if (!NILP (Voverriding_local_map)) 9328 else if (!NILP (Voverriding_local_map))
9330 { 9329 {
@@ -9334,8 +9333,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
9334 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0])); 9333 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
9335 nmaps_allocated = 2; 9334 nmaps_allocated = 2;
9336 } 9335 }
9337 if (!NILP (Voverriding_local_map)) 9336 submaps[nmaps++] = Voverriding_local_map;
9338 submaps[nmaps++] = Voverriding_local_map;
9339 } 9337 }
9340 else 9338 else
9341 { 9339 {