aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorRichard M. Stallman2005-07-03 19:31:46 +0000
committerRichard M. Stallman2005-07-03 19:31:46 +0000
commit8a26ec4e18c4ed7e87b07b9b889765f46d3898e4 (patch)
treec5afbf5cbdf20d1173efcc926988b0889ebc2137 /lisp/emulation
parentc9b6a3a6d3d4890ec0fc6d72a757a8abfa567215 (diff)
downloademacs-8a26ec4e18c4ed7e87b07b9b889765f46d3898e4.tar.gz
emacs-8a26ec4e18c4ed7e87b07b9b889765f46d3898e4.zip
(tpu-mark): Fix previous change.
(zmacs-regions): Add defvar. (repeat-complex-command-map): Everything about that deleted.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/tpu-edt.el14
1 files changed, 1 insertions, 13 deletions
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el
index 02b4da7bedc..d685bec1e65 100644
--- a/lisp/emulation/tpu-edt.el
+++ b/lisp/emulation/tpu-edt.el
@@ -542,7 +542,7 @@ Otherwise sets the tpu-match markers to nil and returns nil."
542Return the appropriate value of the mark for the current 542Return the appropriate value of the mark for the current
543version of Emacs." 543version of Emacs."
544 (cond (tpu-lucid-emacs-p (mark (not zmacs-regions))) 544 (cond (tpu-lucid-emacs-p (mark (not zmacs-regions)))
545 (and mark-active (mark (not transient-mark-mode))))) 545 (t (and mark-active (mark (not transient-mark-mode))))))
546 546
547(defun tpu-set-mark (pos) 547(defun tpu-set-mark (pos)
548 "TPU-edt version of the `set-mark' function. 548 "TPU-edt version of the `set-mark' function.
@@ -2264,24 +2264,12 @@ Accepts a prefix argument for the number of tpu-pan-columns to scroll."
2264 2264
2265 2265
2266;;; 2266;;;
2267;;; Repeat complex command map additions to make arrows work
2268;;;
2269(cond ((boundp 'repeat-complex-command-map)
2270 (define-key repeat-complex-command-map "\e[A" 'previous-complex-command)
2271 (define-key repeat-complex-command-map "\e[B" 'next-complex-command)
2272 (define-key repeat-complex-command-map "\eOA" 'previous-complex-command)
2273 (define-key repeat-complex-command-map "\eOB" 'next-complex-command)))
2274
2275
2276;;;
2277;;; Minibuffer map additions to make KP_enter = RET 2267;;; Minibuffer map additions to make KP_enter = RET
2278;;; 2268;;;
2279(define-key minibuffer-local-map "\eOM" 'exit-minibuffer) 2269(define-key minibuffer-local-map "\eOM" 'exit-minibuffer)
2280(define-key minibuffer-local-ns-map "\eOM" 'exit-minibuffer) 2270(define-key minibuffer-local-ns-map "\eOM" 'exit-minibuffer)
2281(define-key minibuffer-local-completion-map "\eOM" 'exit-minibuffer) 2271(define-key minibuffer-local-completion-map "\eOM" 'exit-minibuffer)
2282(define-key minibuffer-local-must-match-map "\eOM" 'minibuffer-complete-and-exit) 2272(define-key minibuffer-local-must-match-map "\eOM" 'minibuffer-complete-and-exit)
2283(and (boundp 'repeat-complex-command-map)
2284 (define-key repeat-complex-command-map "\eOM" 'exit-minibuffer))
2285 2273
2286 2274
2287;;; 2275;;;