diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-07-03 19:31:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-07-03 19:31:46 +0000 |
commit | 8a26ec4e18c4ed7e87b07b9b889765f46d3898e4 (patch) | |
tree | c5afbf5cbdf20d1173efcc926988b0889ebc2137 | |
parent | c9b6a3a6d3d4890ec0fc6d72a757a8abfa567215 (diff) | |
download | emacs-8a26ec4e18c4ed7e87b07b9b889765f46d3898e4.tar.gz |
(tpu-mark): Fix previous change.
(zmacs-regions): Add defvar.
(repeat-complex-command-map): Everything about that deleted.
-rw-r--r-- | lisp/emulation/tpu-edt.el | 14 |
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." Return the appropriate value of the mark for the current version of Emacs." (cond (tpu-lucid-emacs-p (mark (not zmacs-regions))) - (and mark-active (mark (not transient-mark-mode))))) + (t (and mark-active (mark (not transient-mark-mode)))))) (defun tpu-set-mark (pos) "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." ;;; -;;; Repeat complex command map additions to make arrows work -;;; -(cond ((boundp 'repeat-complex-command-map) - (define-key repeat-complex-command-map "\e[A" 'previous-complex-command) - (define-key repeat-complex-command-map "\e[B" 'next-complex-command) - (define-key repeat-complex-command-map "\eOA" 'previous-complex-command) - (define-key repeat-complex-command-map "\eOB" 'next-complex-command))) - - -;;; ;;; Minibuffer map additions to make KP_enter = RET ;;; (define-key minibuffer-local-map "\eOM" 'exit-minibuffer) (define-key minibuffer-local-ns-map "\eOM" 'exit-minibuffer) (define-key minibuffer-local-completion-map "\eOM" 'exit-minibuffer) (define-key minibuffer-local-must-match-map "\eOM" 'minibuffer-complete-and-exit) -(and (boundp 'repeat-complex-command-map) - (define-key repeat-complex-command-map "\eOM" 'exit-minibuffer)) ;;; |