changeset 94104:3c7025ac9e2c

(read_key_sequence): Remove always-true checks.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 15 Apr 2008 23:36:02 +0000
parents 92847a340dc4
children 4067304970d0
files src/keyboard.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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
     {