aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;;;