aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-06-12 04:56:35 +0000
committerStefan Monnier2007-06-12 04:56:35 +0000
commitc8791c6a508cfe45dda766c2f3b9e1dbb314fc4e (patch)
tree99c55860b7df491dc4ff0c14477bcc20f883ed76
parent86dd4d035fd5e742a06bd2ad3b144deb765f88a8 (diff)
downloademacs-c8791c6a508cfe45dda766c2f3b9e1dbb314fc4e.tar.gz
emacs-c8791c6a508cfe45dda766c2f3b9e1dbb314fc4e.zip
(tpu-emacs-map-key): Use new keymap names.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/emulation/tpu-mapper.el6
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ccca34707c3..f28aac05b4f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12007-06-12 Stefan Monnier <monnier@iro.umontreal.ca> 12007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * emulation/tpu-mapper.el (tpu-emacs-map-key): Use new keymap names.
4
3 * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map. 5 * emulation/tpu-edt.el (tpu-gold-map): Rename from GOLD-map.
4 (tpu-lucid-emacs-p): Remove. Use (featurep 'xemacs) instead. 6 (tpu-lucid-emacs-p): Remove. Use (featurep 'xemacs) instead.
5 (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars. 7 (CSI-map, GOLD-CSI-map, GOLD-SS3-map, SS3-map): Delete vars.
diff --git a/lisp/emulation/tpu-mapper.el b/lisp/emulation/tpu-mapper.el
index 975e61c8df3..eeaa5c7c560 100644
--- a/lisp/emulation/tpu-mapper.el
+++ b/lisp/emulation/tpu-mapper.el
@@ -202,9 +202,9 @@
202 (setq tpu-key (concat "[" (format "%s" tpu-key-seq) "]")) 202 (setq tpu-key (concat "[" (format "%s" tpu-key-seq) "]"))
203 (cond ((not (equal tpu-key tpu-return)) 203 (cond ((not (equal tpu-key tpu-return))
204 (set-buffer "Keys") 204 (set-buffer "Keys")
205 (insert (format"(global-set-key %s %s)\n" tpu-key func)) 205 (insert (format"(define-key tpu-global-map %s %s)\n" tpu-key func))
206 (set-buffer "Gold-Keys") 206 (set-buffer "Gold-Keys")
207 (insert (format "(define-key GOLD-map %s %s)\n" tpu-key gold-func)) 207 (insert (format "(define-key tpu-gold-map %s %s)\n" tpu-key gold-func))
208 (set-buffer "Directions")) 208 (set-buffer "Directions"))
209 ;; bogosity to get next prompt to come up, if the user hits <CR>! 209 ;; bogosity to get next prompt to come up, if the user hits <CR>!
210 ;; check periodically to see if this is still needed... 210 ;; check periodically to see if this is still needed...
@@ -393,5 +393,5 @@
393") 393")
394(goto-char (point-min)) 394(goto-char (point-min))
395 395
396;;; arch-tag: bab5872f-cd3a-4c1c-aedb-047b67646f6c 396;; arch-tag: bab5872f-cd3a-4c1c-aedb-047b67646f6c
397;;; tpu-mapper.el ends here 397;;; tpu-mapper.el ends here