summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2007-04-01 22:03:03 +0000
committerChong Yidong <cyd@stupidchicken.com>2007-04-01 22:03:03 +0000
commiteb0e3d5acceff82b61cf1c4f74605b5839e933ed (patch)
treecb1fd03923921ce33cf8fa75c1f2951f573e7cb3
parentb91773357aae5ac792ee01ac3334adcd0ed952ab (diff)
downloademacs-eb0e3d5acceff82b61cf1c4f74605b5839e933ed.tar.gz
(command_loop_1): Fcommand_remapping has new arg; caller changed.
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index f2fbb68733d..bda07473ccf 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1691,7 +1691,7 @@ command_loop_1 ()
if (SYMBOLP (cmd))
{
Lisp_Object cmd1;
- if (cmd1 = Fcommand_remapping (cmd, Qnil), !NILP (cmd1))
+ if (cmd1 = Fcommand_remapping (cmd, Qnil, Qnil), !NILP (cmd1))
cmd = cmd1;
}