emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100312: Fix error in last commit.


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100312: Fix error in last commit.
Date: Wed, 15 Dec 2010 09:33:11 +0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100312
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Wed 2010-12-15 09:33:11 +0800
message:
  Fix error in last commit.
modified:
  lisp/emulation/edt-mapper.el
=== modified file 'lisp/emulation/edt-mapper.el'
--- a/lisp/emulation/edt-mapper.el      2010-12-15 01:26:56 +0000
+++ b/lisp/emulation/edt-mapper.el      2010-12-15 01:33:11 +0000
@@ -162,11 +162,12 @@
 
 (mapc
  (lambda (function-key)
-      (if (not (lookup-key (current-global-map) function-key))
-               (define-key (current-global-map) function-key 'forward-char)))
+   (if (not (lookup-key (current-global-map) function-key))
+       (define-key (current-global-map) function-key 'forward-char)))
  '([kp-0] [kp-1] [kp-2] [kp-3] [kp-4]
    [kp-5] [kp-6] [kp-7] [kp-8] [kp-9]
-   [kp-
+   [kp-space]
+   [kp-tab]
    [kp-enter]
    [kp-multiply]
    [kp-add]


reply via email to

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