aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKaroly Lorentey2006-05-20 17:30:48 +0000
committerKaroly Lorentey2006-05-20 17:30:48 +0000
commitdbe9f5ba9648890dc34f4836a49fde766b21ce74 (patch)
tree31cfa9e2d8ddaa882edfd4e5ebf8b96d6240b17e /lisp
parentab797f65de1b82ff9e96aab6989976a152385048 (diff)
downloademacs-dbe9f5ba9648890dc34f4836a49fde766b21ce74.tar.gz
emacs-dbe9f5ba9648890dc34f4836a49fde766b21ce74.zip
Fix syntax errors in terminal initialization files.
* lisp/term/iris-ansi.el (iris-function-map): Fix read syntax. * lisp/term/lk201.el (lk201-function-map): Fix read syntax. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-566
Diffstat (limited to 'lisp')
-rw-r--r--lisp/term/iris-ansi.el4
-rw-r--r--lisp/term/lk201.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/term/iris-ansi.el b/lisp/term/iris-ansi.el
index a6d0724cad1..0f1d426d23c 100644
--- a/lisp/term/iris-ansi.el
+++ b/lisp/term/iris-ansi.el
@@ -93,8 +93,8 @@
93(define-key iris-function-map "\e[048q" [M-f12]) 93(define-key iris-function-map "\e[048q" [M-f12])
94 94
95 95
96(define-key iris-function-map "\e[057q" [C-`]) 96(define-key iris-function-map "\e[057q" [?\C-`])
97(define-key iris-function-map "\e[115q" [M-`]) 97(define-key iris-function-map "\e[115q" [?\M-`])
98 98
99(define-key iris-function-map "\e[049q" [?\C-1]) 99(define-key iris-function-map "\e[049q" [?\C-1])
100(define-key iris-function-map "\e[058q" [?\M-1]) 100(define-key iris-function-map "\e[058q" [?\M-1])
diff --git a/lisp/term/lk201.el b/lisp/term/lk201.el
index dad42d8f68f..17ac3474ff0 100644
--- a/lisp/term/lk201.el
+++ b/lisp/term/lk201.el
@@ -69,7 +69,7 @@
69(define-key lk201-function-map "\eOv" [kp-6]) 69(define-key lk201-function-map "\eOv" [kp-6])
70(define-key lk201-function-map "\eOw" [kp-7]) 70(define-key lk201-function-map "\eOw" [kp-7])
71(define-key lk201-function-map "\eOx" [kp-8]) 71(define-key lk201-function-map "\eOx" [kp-8])
72(define-key lk201-function-map "\eOy" [kp-9])) 72(define-key lk201-function-map "\eOy" [kp-9])
73 73
74(defun terminal-init-lk201 () 74(defun terminal-init-lk201 ()
75 ;; Use inheritance to let the main keymap override these defaults. 75 ;; Use inheritance to let the main keymap override these defaults.