Function: turn-off-xterm-mouse-tracking-on-terminal
turn-off-xterm-mouse-tracking-on-terminal is a byte-compiled function
defined in xt-mouse.el.gz.
Signature
(turn-off-xterm-mouse-tracking-on-terminal TERMINAL)
Documentation
Disable xterm mouse tracking on TERMINAL.
Source Code
;; Defined in /usr/src/emacs/lisp/xt-mouse.el.gz
(defun turn-off-xterm-mouse-tracking-on-terminal (terminal)
"Disable xterm mouse tracking on TERMINAL."
;; Only send the disable command to those terminals to which we've already
;; sent the enable command.
(when (and (terminal-parameter terminal 'xterm-mouse-mode)
(eq t (terminal-live-p terminal)))
;; We could remove the key-binding and unset the `xterm-mouse-mode'
;; terminal parameter, but it seems less harmful to send this escape
;; command too many times (or to catch an unintended key sequence), than
;; to send it too few times (or to fail to let xterm-mouse events
;; pass by untranslated).
(condition-case err
(send-string-to-terminal xterm-mouse-tracking-disable-sequence
terminal)
;; FIXME: This should use a dedicated error signal.
(error (if (equal (cadr err) "Terminal is currently suspended")
nil
(signal (car err) (cdr err)))))
(setf (terminal-parameter nil 'tty-mode-set-strings)
(remq xterm-mouse-tracking-enable-sequence
(terminal-parameter nil 'tty-mode-set-strings)))
(setf (terminal-parameter nil 'tty-mode-reset-strings)
(remq xterm-mouse-tracking-disable-sequence
(terminal-parameter nil 'tty-mode-reset-strings)))
(set-terminal-parameter terminal 'xterm-mouse-mode nil)))