aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-14 08:40:57 -0700
committerPaul Eggert2011-03-14 08:40:57 -0700
commit1004a21a8f2488da573e0340873cbdeac3ac2001 (patch)
treead30d834e3b9054546c2dc99d61105b6a545661a /src/keymap.c
parent38fc62d95ae8078bedac4a99eb7ea8856f86032e (diff)
downloademacs-1004a21a8f2488da573e0340873cbdeac3ac2001.tar.gz
emacs-1004a21a8f2488da573e0340873cbdeac3ac2001.zip
* 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 cbb6adf3a0b..05d9616ef2d 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2774,8 +2774,8 @@ remapped command in the returned list. */)
2774 considered remapped sequences yet, copy them over and 2774 considered remapped sequences yet, copy them over and
2775 process them. */ 2775 process them. */
2776 || (!remapped && (sequences = remapped_sequences, 2776 || (!remapped && (sequences = remapped_sequences,
2777 remapped = 1), 2777 remapped = 1,
2778 CONSP (sequences))) 2778 CONSP (sequences))))
2779 { 2779 {
2780 Lisp_Object sequence, function; 2780 Lisp_Object sequence, function;
2781 2781