aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-07-18 13:28:21 +0000
committerKim F. Storm2006-07-18 13:28:21 +0000
commitfb53f3543b3e779582d5183fb58c28dd138dfd84 (patch)
tree3c68b10e0d947931c51fa146b10447a51b00dd05 /src
parent43cae48c41f5f20bffdf8277df8dac479225d450 (diff)
downloademacs-fb53f3543b3e779582d5183fb58c28dd138dfd84.tar.gz
emacs-fb53f3543b3e779582d5183fb58c28dd138dfd84.zip
(Fmap_keymap): Use xsignal1.
Diffstat (limited to 'src')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 6f57bd63376..71fd5f03390 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -758,7 +758,7 @@ usage: (map-keymap FUNCTION KEYMAP) */)
758 if (INTEGERP (function)) 758 if (INTEGERP (function))
759 /* We have to stop integers early since map_keymap gives them special 759 /* We have to stop integers early since map_keymap gives them special
760 significance. */ 760 significance. */
761 Fsignal (Qinvalid_function, Fcons (function, Qnil)); 761 xsignal1 (Qinvalid_function, function);
762 if (! NILP (sort_first)) 762 if (! NILP (sort_first))
763 return call3 (intern ("map-keymap-internal"), function, keymap, Qt); 763 return call3 (intern ("map-keymap-internal"), function, keymap, Qt);
764 764