emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/keyboard.c


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/keyboard.c
Date: Thu, 28 Feb 2002 20:43:04 -0500

Index: emacs/src/keyboard.c
diff -c emacs/src/keyboard.c:1.658 emacs/src/keyboard.c:1.659
*** emacs/src/keyboard.c:1.658  Wed Feb 20 18:00:35 2002
--- emacs/src/keyboard.c        Sat Feb 23 17:02:18 2002
***************
*** 1506,1517 ****
  
        /* Remap command through active keymaps */
        Vthis_original_command = cmd;
!       if (is_command_symbol (cmd))
        {
          Lisp_Object cmd1;
! 
!         cmd1 = Fkey_binding (cmd, Qnil, Qt);
!         if (!NILP (cmd1) && is_command_symbol (cmd1))
            cmd = cmd1;
        }
  
--- 1506,1515 ----
  
        /* Remap command through active keymaps */
        Vthis_original_command = cmd;
!       if (SYMBOLP (cmd))
        {
          Lisp_Object cmd1;
!         if (cmd1 = Fremap_command (cmd), !NILP (cmd1))
            cmd = cmd1;
        }
  



reply via email to

[Prev in Thread] Current Thread [Next in Thread]