changeset 112050:44c22a3327ec

Fix error in last commit.
author Chong Yidong <cyd@stupidchicken.com>
date Wed, 15 Dec 2010 09:33:11 +0800
parents 4a7382958ef1
children bb8e2da18b9d
files lisp/emulation/edt-mapper.el
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emulation/edt-mapper.el	Wed Dec 15 09:26:56 2010 +0800
+++ b/lisp/emulation/edt-mapper.el	Wed Dec 15 09:33:11 2010 +0800
@@ -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]