comparison src/keyboard.c @ 76886:da21c991a6d5

(command_loop_1): Fcommand_remapping has new arg; caller changed.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 01 Apr 2007 22:03:03 +0000
parents ba2df4dce7bc
children ff554a3125c3 51a9e0fd18ae dc002877ce12 4ef881a120fe
comparison
equal deleted inserted replaced
76885:fcaf9518268a 76886:da21c991a6d5
1689 /* Remap command through active keymaps */ 1689 /* Remap command through active keymaps */
1690 Vthis_original_command = cmd; 1690 Vthis_original_command = cmd;
1691 if (SYMBOLP (cmd)) 1691 if (SYMBOLP (cmd))
1692 { 1692 {
1693 Lisp_Object cmd1; 1693 Lisp_Object cmd1;
1694 if (cmd1 = Fcommand_remapping (cmd, Qnil), !NILP (cmd1)) 1694 if (cmd1 = Fcommand_remapping (cmd, Qnil, Qnil), !NILP (cmd1))
1695 cmd = cmd1; 1695 cmd = cmd1;
1696 } 1696 }
1697 1697
1698 /* Execute the command. */ 1698 /* Execute the command. */
1699 1699