diff options
| author | Stefan Monnier | 2007-06-12 04:56:35 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-06-12 04:56:35 +0000 |
| commit | c8791c6a508cfe45dda766c2f3b9e1dbb314fc4e (patch) | |
| tree | 99c55860b7df491dc4ff0c14477bcc20f883ed76 /lisp | |
| parent | 86dd4d035fd5e742a06bd2ad3b144deb765f88a8 (diff) | |
| download | emacs-c8791c6a508cfe45dda766c2f3b9e1dbb314fc4e.tar.gz emacs-c8791c6a508cfe45dda766c2f3b9e1dbb314fc4e.zip | |
(tpu-emacs-map-key): Use new keymap names.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/emulation/tpu-mapper.el | 6 |
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 @@ | |||
| 1 | 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2007-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 |