aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-03-14 08:40:57 -0700
committerPaul Eggert <[email protected]>2011-03-14 08:40:57 -0700
commit1004a21a8f2488da573e0340873cbdeac3ac2001 (patch)
treead30d834e3b9054546c2dc99d61105b6a545661a /src/keymap.c
parent38fc62d95ae8078bedac4a99eb7ea8856f86032e (diff)
* keymap.c (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c
index cbb6adf3a0..05d9616ef2 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2774,8 +2774,8 @@ remapped command in the returned list. */)
considered remapped sequences yet, copy them over and
process them. */
|| (!remapped && (sequences = remapped_sequences,
- remapped = 1),
- CONSP (sequences)))
+ remapped = 1,
+ CONSP (sequences))))
{
Lisp_Object sequence, function;