2016-09-28 17:08:12 +00:00
|
|
|
;;; xt-mouse.el --- support the mouse when emacs run in an xterm -*- lexical-binding: t -*-
|
1996-01-14 07:34:30 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 1994, 2000-2024 Free Software Foundation, Inc.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
1997-05-27 21:26:13 +00:00
|
|
|
;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
|
1995-10-09 17:08:20 +00:00
|
|
|
;; Keywords: mouse, terminals
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1995-10-09 17:08:20 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
1995-10-09 17:08:20 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2000-02-22 11:57:31 +00:00
|
|
|
;;; Commentary:
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2005-01-17 09:54:56 +00:00
|
|
|
;; Enable mouse support when running inside an xterm.
|
1995-10-09 17:08:20 +00:00
|
|
|
|
|
|
|
;; This is actually useful when you are running X11 locally, but is
|
|
|
|
;; working on remote machine over a modem line or through a gateway.
|
|
|
|
|
2021-09-14 06:43:18 +00:00
|
|
|
;; It works by translating xterm escape codes into generic Emacs mouse
|
1995-10-09 17:08:20 +00:00
|
|
|
;; events so it should work with any package that uses the mouse.
|
|
|
|
|
1996-03-04 21:24:28 +00:00
|
|
|
;; You don't have to turn off xterm mode to use the normal xterm mouse
|
|
|
|
;; functionality, it is still available by holding down the SHIFT key
|
|
|
|
;; when you press the mouse button.
|
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
;;; Todo:
|
|
|
|
|
|
|
|
;; Support multi-click -- somehow.
|
|
|
|
|
2000-02-22 11:57:31 +00:00
|
|
|
;;; Code:
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2007-05-12 09:39:06 +00:00
|
|
|
(defvar xterm-mouse-debug-buffer nil)
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
(defun xterm-mouse-translate (_event)
|
2000-02-22 11:57:31 +00:00
|
|
|
"Read a click and release event from XTerm."
|
2012-07-14 15:40:12 +00:00
|
|
|
(xterm-mouse-translate-1))
|
|
|
|
|
|
|
|
(defun xterm-mouse-translate-extended (_event)
|
|
|
|
"Read a click and release event from XTerm.
|
|
|
|
Similar to `xterm-mouse-translate', but using the \"1006\"
|
|
|
|
extension, which supports coordinates >= 231 (see
|
2019-09-23 06:53:39 +00:00
|
|
|
https://invisible-island.net/xterm/ctlseqs/ctlseqs.html)."
|
2012-07-14 15:40:12 +00:00
|
|
|
(xterm-mouse-translate-1 1006))
|
|
|
|
|
|
|
|
(defun xterm-mouse-translate-1 (&optional extension)
|
1995-10-09 17:08:20 +00:00
|
|
|
(save-excursion
|
2014-07-08 18:47:47 +00:00
|
|
|
(let* ((event (xterm-mouse-event extension))
|
|
|
|
(ev-command (nth 0 event))
|
|
|
|
(ev-data (nth 1 event))
|
2024-03-30 16:00:51 +00:00
|
|
|
(ev-window (nth 0 ev-data))
|
2014-07-08 18:47:47 +00:00
|
|
|
(ev-where (nth 1 ev-data))
|
2024-03-30 16:00:51 +00:00
|
|
|
(last-window (terminal-parameter nil 'xterm-mouse-last-window))
|
2014-07-08 18:47:47 +00:00
|
|
|
(vec (vector event))
|
2015-03-25 01:04:00 +00:00
|
|
|
(is-move (eq 'mouse-movement ev-command))
|
2014-07-08 18:47:47 +00:00
|
|
|
(is-down (string-match "down-" (symbol-name ev-command))))
|
|
|
|
|
2023-12-09 08:17:05 +00:00
|
|
|
;; Mouse events symbols must have an 'event-kind property set.
|
|
|
|
;; Most of them use the value 'mouse-click, but 'mouse-movement has
|
|
|
|
;; a different value. See head_table in keyboard.c. (bug#67457)
|
|
|
|
(when ev-command (put ev-command 'event-kind
|
|
|
|
(if (eq ev-command 'mouse-movement)
|
|
|
|
'mouse-movement
|
|
|
|
'mouse-click)))
|
2014-10-21 20:11:22 +00:00
|
|
|
|
2024-03-30 16:00:51 +00:00
|
|
|
;; remember window of current mouse position
|
|
|
|
(set-terminal-parameter nil 'xterm-mouse-last-window ev-window)
|
|
|
|
|
2014-07-08 18:47:47 +00:00
|
|
|
(cond
|
|
|
|
((null event) nil) ;Unknown/bogus byte sequence!
|
|
|
|
(is-down
|
2016-11-22 20:32:11 +00:00
|
|
|
(setf (terminal-parameter nil 'xterm-mouse-last-down)
|
|
|
|
;; EVENT might be handed back to the input queue, which
|
|
|
|
;; might modify it. Copy it into the terminal parameter
|
|
|
|
;; to guard against that.
|
|
|
|
(copy-sequence event))
|
2014-07-08 18:47:47 +00:00
|
|
|
vec)
|
2020-10-03 21:46:30 +00:00
|
|
|
(is-move
|
2020-11-01 05:25:47 +00:00
|
|
|
(xterm-mouse--handle-mouse-movement)
|
2024-03-30 16:00:51 +00:00
|
|
|
;; after mouse movement autoselect the mouse window, but ...
|
|
|
|
(cond ((and mouse-autoselect-window
|
|
|
|
;; ignore modeline, tab-bar, menu-bar and so forth ...
|
|
|
|
(windowp ev-window)
|
|
|
|
;; and don't deselect the minibuffer ...
|
|
|
|
(not (window-minibuffer-p (selected-window)))
|
|
|
|
;; and select only, if mouse is over a new window ...
|
|
|
|
(not (eq ev-window last-window))
|
|
|
|
;; which is different from the selected window
|
|
|
|
(not (eq ev-window (selected-window))))
|
|
|
|
(put 'select-window 'event-kind 'switch-frame)
|
|
|
|
(push `(select-window (,ev-window)) unread-command-events)
|
|
|
|
[])
|
|
|
|
;;(vector `(select-window (,ev-window))))
|
|
|
|
(track-mouse vec)
|
|
|
|
(t [])))
|
2014-07-08 18:47:47 +00:00
|
|
|
(t
|
|
|
|
(let* ((down (terminal-parameter nil 'xterm-mouse-last-down))
|
|
|
|
(down-data (nth 1 down))
|
|
|
|
(down-where (nth 1 down-data)))
|
|
|
|
(setf (terminal-parameter nil 'xterm-mouse-last-down) nil)
|
|
|
|
(cond
|
|
|
|
((null down)
|
2019-06-26 14:24:59 +00:00
|
|
|
;; This is an "up-only" event. Pretend there was an up-event
|
2014-07-08 18:47:47 +00:00
|
|
|
;; right before and keep the up-event for later.
|
|
|
|
(push event unread-command-events)
|
|
|
|
(vector (cons (intern (replace-regexp-in-string
|
|
|
|
"\\`\\([ACMHSs]-\\)*" "\\&down-"
|
|
|
|
(symbol-name ev-command) t))
|
|
|
|
(cdr event))))
|
|
|
|
((equal ev-where down-where) vec)
|
2014-05-08 01:46:15 +00:00
|
|
|
(t
|
2014-07-08 18:47:47 +00:00
|
|
|
(let ((drag (if (symbolp ev-where)
|
|
|
|
0 ;FIXME: Why?!?
|
|
|
|
(list (intern (replace-regexp-in-string
|
|
|
|
"\\`\\([ACMHSs]-\\)*" "\\&drag-"
|
|
|
|
(symbol-name ev-command) t))
|
|
|
|
down-data ev-data))))
|
|
|
|
(if (null track-mouse)
|
|
|
|
(vector drag)
|
|
|
|
(push drag unread-command-events)
|
2020-11-01 05:25:47 +00:00
|
|
|
(xterm-mouse--handle-mouse-movement)
|
2014-07-08 18:47:47 +00:00
|
|
|
(vector (list 'mouse-movement ev-data))))))))))))
|
1995-11-11 04:07:39 +00:00
|
|
|
|
2020-11-01 05:25:47 +00:00
|
|
|
(defun xterm-mouse--handle-mouse-movement ()
|
|
|
|
"Handle mouse motion that was just generated for XTerm mouse."
|
|
|
|
(display--update-for-mouse-movement (terminal-parameter nil 'xterm-mouse-x)
|
|
|
|
(terminal-parameter nil 'xterm-mouse-y)))
|
|
|
|
|
2005-09-11 03:06:33 +00:00
|
|
|
;; These two variables have been converted to terminal parameters.
|
|
|
|
;;
|
|
|
|
;;(defvar xterm-mouse-x 0
|
|
|
|
;; "Position of last xterm mouse event relative to the frame.")
|
|
|
|
;;
|
|
|
|
;;(defvar xterm-mouse-y 0
|
|
|
|
;; "Position of last xterm mouse event relative to the frame.")
|
1995-11-11 04:07:39 +00:00
|
|
|
|
2007-03-21 20:41:23 +00:00
|
|
|
(defvar xt-mouse-epoch nil)
|
|
|
|
|
1998-12-05 18:23:14 +00:00
|
|
|
;; Indicator for the xterm-mouse mode.
|
|
|
|
|
2000-02-22 11:57:31 +00:00
|
|
|
(defun xterm-mouse-position-function (pos)
|
|
|
|
"Bound to `mouse-position-function' in XTerm mouse mode."
|
2005-09-11 03:06:33 +00:00
|
|
|
(when (terminal-parameter nil 'xterm-mouse-x)
|
|
|
|
(setcdr pos (cons (terminal-parameter nil 'xterm-mouse-x)
|
|
|
|
(terminal-parameter nil 'xterm-mouse-y))))
|
2000-02-22 11:57:31 +00:00
|
|
|
pos)
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2019-02-12 23:20:40 +00:00
|
|
|
(define-obsolete-function-alias 'xterm-mouse-truncate-wrap 'truncate "27.1")
|
2007-05-25 14:34:35 +00:00
|
|
|
|
2016-03-25 10:17:38 +00:00
|
|
|
(defcustom xterm-mouse-utf-8 nil
|
|
|
|
"Non-nil if UTF-8 coordinates should be used to read mouse coordinates.
|
|
|
|
Set this to non-nil if you are sure that your terminal
|
|
|
|
understands UTF-8 coordinates, but not SGR coordinates."
|
2016-03-26 20:45:51 +00:00
|
|
|
:version "25.1"
|
2016-03-25 10:17:38 +00:00
|
|
|
:type 'boolean
|
|
|
|
:risky t
|
|
|
|
:group 'xterm)
|
|
|
|
|
|
|
|
(defun xterm-mouse--read-coordinate ()
|
|
|
|
"Read a mouse coordinate from the current terminal.
|
|
|
|
If `xterm-mouse-utf-8' was non-nil when
|
|
|
|
`turn-on-xterm-mouse-tracking-on-terminal' was called, reads the
|
|
|
|
coordinate as an UTF-8 code unit sequence; otherwise, reads a
|
|
|
|
single byte."
|
2023-01-26 08:54:43 +00:00
|
|
|
(let ((previous-keyboard-coding-system (keyboard-coding-system))
|
|
|
|
(utf-8-p (terminal-parameter nil 'xterm-mouse-utf-8))
|
|
|
|
;; Prevent conversions inside 'read-char' due to input method,
|
|
|
|
;; when we call 'read-char' below with 2nd argument non-nil.
|
|
|
|
(input-method-function nil))
|
2016-03-25 10:17:38 +00:00
|
|
|
(unwind-protect
|
|
|
|
(progn
|
2023-01-26 08:54:43 +00:00
|
|
|
(set-keyboard-coding-system (if utf-8-p 'utf-8-unix 'no-conversion))
|
|
|
|
(read-char nil
|
|
|
|
;; Force 'read-char' to decode UTF-8 sequences if
|
|
|
|
;; 'xterm-mouse-utf-8' is non-nil.
|
|
|
|
utf-8-p
|
|
|
|
;; Wait only a little; we assume that the entire
|
|
|
|
;; escape sequence has already been sent when
|
|
|
|
;; this function is called.
|
|
|
|
0.1))
|
2016-03-25 10:17:38 +00:00
|
|
|
(set-keyboard-coding-system previous-keyboard-coding-system))))
|
2015-03-25 01:04:00 +00:00
|
|
|
|
|
|
|
;; In default mode, each numeric parameter of XTerm's mouse report is
|
|
|
|
;; a single char, possibly encoded as utf-8. The actual numeric
|
|
|
|
;; parameter then is obtained by subtracting 32 from the character
|
2015-03-26 01:19:29 +00:00
|
|
|
;; code. In extended mode the parameters are returned as decimal
|
|
|
|
;; string delimited either by semicolons or for the last parameter by
|
|
|
|
;; one of the characters "m" or "M". If the last character is a "m",
|
2015-03-25 01:04:00 +00:00
|
|
|
;; then the mouse event was a button release, else it was a button
|
|
|
|
;; press or a mouse motion. Return value is a cons cell with
|
|
|
|
;; (NEXT-NUMERIC-PARAMETER . LAST-CHAR)
|
|
|
|
(defun xterm-mouse--read-number-from-terminal (extension)
|
|
|
|
(let (c)
|
|
|
|
(if extension
|
|
|
|
(let ((n 0))
|
|
|
|
(while (progn
|
|
|
|
(setq c (read-char))
|
|
|
|
(<= ?0 c ?9))
|
|
|
|
(setq n (+ (* 10 n) c (- ?0))))
|
|
|
|
(cons n c))
|
2016-03-25 10:17:38 +00:00
|
|
|
(cons (- (setq c (xterm-mouse--read-coordinate)) 32) c))))
|
2015-03-25 01:04:00 +00:00
|
|
|
|
|
|
|
;; XTerm reports mouse events as
|
|
|
|
;; <EVENT-CODE> <X> <Y> in default mode, and
|
|
|
|
;; <EVENT-CODE> ";" <X> ";" <Y> <"M" or "m"> in extended mode.
|
|
|
|
;; The macro read-number-from-terminal takes care of reading
|
2015-03-26 01:19:29 +00:00
|
|
|
;; the response parameters appropriately. The EVENT-CODE differs
|
2015-03-25 01:04:00 +00:00
|
|
|
;; slightly between default and extended mode.
|
|
|
|
;; Return a list (EVENT-TYPE-SYMBOL X Y).
|
|
|
|
(defun xterm-mouse--read-event-sequence (&optional extension)
|
|
|
|
(pcase-let*
|
|
|
|
((`(,code . ,_) (xterm-mouse--read-number-from-terminal extension))
|
|
|
|
(`(,x . ,_) (xterm-mouse--read-number-from-terminal extension))
|
|
|
|
(`(,y . ,c) (xterm-mouse--read-number-from-terminal extension))
|
|
|
|
(wheel (/= (logand code 64) 0))
|
|
|
|
(move (/= (logand code 32) 0))
|
|
|
|
(ctrl (/= (logand code 16) 0))
|
|
|
|
(meta (/= (logand code 8) 0))
|
|
|
|
(shift (/= (logand code 4) 0))
|
|
|
|
(down (and (not wheel)
|
|
|
|
(not move)
|
|
|
|
(if extension
|
|
|
|
(eq c ?M)
|
|
|
|
(/= (logand code 3) 3))))
|
|
|
|
(btn (cond
|
|
|
|
((or extension down wheel)
|
|
|
|
(+ (logand code 3) (if wheel 4 1)))
|
|
|
|
;; The default mouse protocol does not report the button
|
|
|
|
;; number in release events: extract the button number
|
|
|
|
;; from last button-down event.
|
|
|
|
((terminal-parameter nil 'xterm-mouse-last-down)
|
|
|
|
(string-to-number
|
|
|
|
(substring
|
|
|
|
(symbol-name
|
|
|
|
(car (terminal-parameter nil 'xterm-mouse-last-down)))
|
|
|
|
-1)))
|
|
|
|
;; Spurious release event without previous button-down
|
|
|
|
;; event: assume, that the last button was button 1.
|
|
|
|
(t 1)))
|
2024-01-28 23:51:11 +00:00
|
|
|
(sym
|
|
|
|
(if move 'mouse-movement
|
|
|
|
(intern
|
|
|
|
(concat
|
|
|
|
(if ctrl "C-" "")
|
|
|
|
(if meta "M-" "")
|
|
|
|
(if shift "S-" "")
|
|
|
|
(if down "down-" "")
|
2024-01-29 14:35:09 +00:00
|
|
|
(let ((remap (alist-get btn mouse-wheel-buttons)))
|
|
|
|
(if remap
|
|
|
|
(symbol-name remap)
|
|
|
|
(format "mouse-%d" btn))))))))
|
2015-03-25 01:04:00 +00:00
|
|
|
(list sym (1- x) (1- y))))
|
2012-07-14 15:40:12 +00:00
|
|
|
|
2014-05-11 05:49:14 +00:00
|
|
|
(defun xterm-mouse--set-click-count (event click-count)
|
|
|
|
(setcdr (cdr event) (list click-count))
|
|
|
|
(let ((name (symbol-name (car event))))
|
|
|
|
(when (string-match "\\(.*?\\)\\(\\(?:down-\\)?mouse-.*\\)" name)
|
|
|
|
(setcar event
|
|
|
|
(intern (concat (match-string 1 name)
|
|
|
|
(if (= click-count 2)
|
|
|
|
"double-" "triple-")
|
|
|
|
(match-string 2 name)))))))
|
|
|
|
|
2012-07-14 15:40:12 +00:00
|
|
|
(defun xterm-mouse-event (&optional extension)
|
|
|
|
"Convert XTerm mouse event to Emacs mouse event.
|
|
|
|
EXTENSION, if non-nil, means to use an extension to the usual
|
|
|
|
terminal mouse protocol; we currently support the value 1006,
|
|
|
|
which is the \"1006\" extension implemented in Xterm >= 277."
|
2015-03-25 01:04:00 +00:00
|
|
|
(let ((click (cond ((memq extension '(1006 nil))
|
|
|
|
(xterm-mouse--read-event-sequence extension))
|
|
|
|
(t
|
|
|
|
(error "Unsupported XTerm mouse protocol")))))
|
2020-09-20 21:32:45 +00:00
|
|
|
(when (and click
|
|
|
|
;; In very obscure circumstances, the click may become
|
|
|
|
;; invalid (see bug#17378).
|
|
|
|
(>= (nth 1 click) 0))
|
2014-05-08 01:46:15 +00:00
|
|
|
(let* ((type (nth 0 click))
|
|
|
|
(x (nth 1 click))
|
|
|
|
(y (nth 2 click))
|
|
|
|
;; Emulate timestamp information. This is accurate enough
|
|
|
|
;; for default value of mouse-1-click-follows-link (450msec).
|
Avoid some double-rounding of Lisp timestamps
Also, simplify some time-related Lisp timestamp code
while we’re in the neighborhood.
* lisp/battery.el (battery-linux-proc-acpi)
(battery-linux-sysfs, battery-upower, battery-bsd-apm):
* lisp/calendar/timeclock.el (timeclock-seconds-to-string)
(timeclock-log, timeclock-last-period)
(timeclock-entry-length, timeclock-entry-list-span)
(timeclock-find-discrep, timeclock-generate-report):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/completion.el (cmpl-hours-since-origin):
* lisp/ecomplete.el (ecomplete-decay-1):
* lisp/emacs-lisp/ert.el (ert--results-update-stats-display)
(ert--results-update-stats-display-maybe):
* lisp/emacs-lisp/timer-list.el (list-timers):
* lisp/emacs-lisp/timer.el (timer-until)
(timer-event-handler):
* lisp/erc/erc-backend.el (erc-server-send-ping)
(erc-server-send-queue, erc-handle-parsed-server-response)
(erc-handle-unknown-server-response):
* lisp/erc/erc-track.el (erc-buffer-visible):
* lisp/erc/erc.el (erc-lurker-cleanup, erc-lurker-p)
(erc-cmd-PING, erc-send-current-line):
* lisp/eshell/em-pred.el (eshell-pred-file-time):
* lisp/eshell/em-unix.el (eshell-show-elapsed-time):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event:org-timestamp):
* lisp/gnus/gnus-int.el (gnus-backend-trace):
* lisp/gnus/gnus-sum.el (gnus-user-date):
* lisp/gnus/mail-source.el (mail-source-delete-crash-box):
* lisp/gnus/nnmaildir.el (nnmaildir--scan):
* lisp/ibuf-ext.el (ibuffer-mark-old-buffers):
* lisp/gnus/nnmaildir.el (nnmaildir--scan):
* lisp/mouse.el (mouse--down-1-maybe-follows-link)
(mouse--click-1-maybe-follows-link):
* lisp/mpc.el (mpc--faster-toggle):
* lisp/net/rcirc.el (rcirc-handler-ctcp-KEEPALIVE)
(rcirc-sentinel):
* lisp/net/tramp-cache.el (tramp-get-file-property):
* lisp/net/tramp-sh.el (tramp-sh-handle-file-newer-than-file-p)
(tramp-maybe-open-connection):
* lisp/net/tramp-smb.el (tramp-smb-maybe-open-connection):
* lisp/org/org-clock.el (org-clock-resolve):
(org-resolve-clocks, org-clock-in, org-clock-out, org-clock-sum):
* lisp/org/org-timer.el (org-timer-start)
(org-timer-pause-or-continue, org-timer-seconds):
* lisp/org/org.el (org-evaluate-time-range):
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
* lisp/pixel-scroll.el (pixel-scroll-in-rush-p):
* lisp/play/hanoi.el (hanoi-move-ring):
* lisp/proced.el (proced-format-time):
* lisp/progmodes/cpp.el (cpp-progress-message):
* lisp/progmodes/flymake.el (flymake--handle-report):
* lisp/progmodes/js.el (js--wait-for-matching-output):
* lisp/subr.el (progress-reporter-do-update):
* lisp/term/xterm.el (xterm--read-event-for-query):
* lisp/time.el (display-time-update, emacs-uptime):
* lisp/tooltip.el (tooltip-delay):
* lisp/url/url-cookie.el (url-cookie-parse-file-netscape):
* lisp/url/url-queue.el (url-queue-prune-old-entries):
* lisp/url/url.el (url-retrieve-synchronously):
* lisp/xt-mouse.el (xterm-mouse-event):
Avoid double-rounding of time-related values. Simplify.
* lisp/calendar/icalendar.el (icalendar--decode-isodatetime):
When hoping for the best (unlikely), use a better decoded time.
(icalendar--convert-sexp-to-ical): Avoid unnecessary encode-time.
* lisp/calendar/timeclock.el (timeclock-when-to-leave):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/desktop.el (desktop-create-buffer):
* lisp/emacs-lisp/benchmark.el (benchmark-elapse):
* lisp/gnus/gnus-art.el (article-lapsed-string):
* lisp/gnus/gnus-group.el (gnus-group-timestamp-delta):
* lisp/gnus/nnmail.el (nnmail-expired-article-p):
* lisp/gnus/nnmaildir.el (nnmaildir-request-expire-articles):
* lisp/nxml/rng-maint.el (rng-time-function):
* lisp/org/org-clock.el (org-clock-get-clocked-time)
(org-clock-resolve, org-resolve-clocks, org-resolve-clocks-if-idle):
* lisp/org/org-habit.el (org-habit-insert-consistency-graphs):
* lisp/progmodes/vhdl-mode.el (vhdl-update-progress-info)
(vhdl-fix-case-region-1):
Use time-since instead of open-coding most of it.
* lisp/erc/erc-dcc.el (erc-dcc-get-sentinel):
* lisp/erc/erc.el (erc-string-to-emacs-time, erc-time-gt):
Now obsolete. All uses changed.
(erc-time-diff): Accept all Lisp time values.
All uses changed.
* lisp/gnus/gnus-demon.el (gnus-demon-idle-since):
* lisp/gnus/gnus-score.el (gnus-score-headers):
* lisp/gnus/nneething.el (nneething-make-head):
* lisp/gnus/nnheader.el (nnheader-message-maybe):
* lisp/gnus/nnimap.el (nnimap-keepalive):
* lisp/image.el (image-animate-timeout):
* lisp/mail/feedmail.el (feedmail-rfc822-date):
* lisp/net/imap.el (imap-wait-for-tag):
* lisp/net/newst-backend.el (newsticker--image-get):
* lisp/net/rcirc.el (rcirc-handler-317, rcirc-handler-333):
* lisp/obsolete/xesam.el (xesam-refresh-entry):
* lisp/org/org-agenda.el (org-agenda-show-clocking-issues)
(org-agenda-check-clock-gap, org-agenda-to-appt):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-resolve-clock)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-columns-edit-value)
(org-columns, org-agenda-columns):
* lisp/org/org-duration.el (org-duration-from-minutes):
* lisp/org/org-element.el (org-element-cache-sync-duration)
(org-element-cache-sync-break)
(org-element--cache-interrupt-p, org-element--cache-sync):
* lisp/org/org-habit.el (org-habit-get-faces)
* lisp/org/org-indent.el (org-indent-add-properties):
* lisp/org/org-table.el (org-table-sum):
* lisp/org/org-timer.el (org-timer-show-remaining-time)
(org-timer-set-timer):
* lisp/org/org.el (org-babel-load-file, org-today)
(org-auto-repeat-maybe, org-2ft, org-time-stamp)
(org-read-date-analyze, org-time-stamp-to-now)
(org-small-year-to-year, org-goto-calendar):
* lisp/org/ox.el (org-export-insert-default-template):
* lisp/ses.el (ses--time-check):
* lisp/type-break.el (type-break-time-warning)
(type-break-statistics, type-break-demo-boring):
* lisp/url/url-cache.el (url-cache-expired)
(url-cache-prune-cache):
* lisp/vc/vc-git.el (vc-git-stash-snapshot):
* lisp/erc/erc-match.el (erc-log-matches-come-back):
Simplify.
2019-02-23 02:32:31 +00:00
|
|
|
(timestamp (if (not xt-mouse-epoch)
|
|
|
|
(progn (setq xt-mouse-epoch (float-time)) 0)
|
New function time-convert
This replaces the awkward reuse of encode-time to both convert
calendrical timestamps to Lisp timestamps, and to convert Lisp
timestamps to other forms. Now, encode-time does just the
former and the new function does just the latter.
The new function builds on a suggestion by Lars Ingebrigtsen in:
https://lists.gnu.org/r/emacs-devel/2019-07/msg00801.html
and refined by Stefan Monnier in:
https://lists.gnu.org/r/emacs-devel/2019-07/msg00803.html
* doc/lispref/os.texi (Time of Day, Time Conversion):
* doc/misc/emacs-mime.texi (time-date):
* etc/NEWS: Update documentation.
* lisp/calendar/cal-dst.el (calendar-next-time-zone-transition):
* lisp/calendar/time-date.el (seconds-to-time, days-to-time):
* lisp/calendar/timeclock.el (timeclock-seconds-to-time):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/completion.el (cmpl-hours-since-origin):
* lisp/ecomplete.el (ecomplete-add-item):
* lisp/emacs-lisp/cl-extra.el (cl--random-time):
* lisp/emacs-lisp/timer.el (timer--time-setter)
(timer-next-integral-multiple-of-time):
* lisp/find-lisp.el (find-lisp-format-time):
* lisp/gnus/gnus-diary.el (gnus-user-format-function-d):
* lisp/gnus/gnus-group.el (gnus-group-set-timestamp):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-show-org-agenda):
* lisp/gnus/nnrss.el (nnrss-normalize-date):
* lisp/gnus/nnspool.el (nnspool-request-newgroups):
* lisp/net/ntlm.el (ntlm-compute-timestamp):
* lisp/net/pop3.el (pop3-uidl-dele):
* lisp/obsolete/vc-arch.el (vc-arch-add-tagline):
* lisp/org/org-clock.el (org-clock-get-clocked-time)
(org-clock-resolve, org-resolve-clocks, org-clock-in)
(org-clock-out, org-clock-sum):
* lisp/org/org-id.el (org-id-uuid, org-id-time-to-b36):
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
* lisp/proced.el (proced-format-time):
* lisp/progmodes/cc-cmds.el (c-progress-init)
(c-progress-update):
* lisp/progmodes/cperl-mode.el (cperl-time-fontification):
* lisp/progmodes/flymake.el (flymake--schedule-timer-maybe):
* lisp/progmodes/vhdl-mode.el (vhdl-update-progress-info)
(vhdl-fix-case-region-1):
* lisp/tar-mode.el (tar-octal-time):
* lisp/time.el (emacs-uptime):
* lisp/url/url-auth.el (url-digest-auth-make-cnonce):
* lisp/url/url-util.el (url-lazy-message):
* lisp/vc/vc-cvs.el (vc-cvs-parse-entry):
* lisp/vc/vc-hg.el (vc-hg-state-fast):
* lisp/xt-mouse.el (xterm-mouse-event):
* test/lisp/emacs-lisp/timer-tests.el:
(timer-next-integral-multiple-of-time-2):
Use time-convert, not encode-time.
* lisp/calendar/icalendar.el (icalendar--decode-isodatetime):
Don’t use now-removed FORM argument for encode-time.
It wasn’t crucial anyway.
* lisp/emacs-lisp/byte-opt.el (side-effect-free-fns): Add time-convert.
* lisp/emacs-lisp/elint.el (elint-unknown-builtin-args):
Update encode-time signature to match current arg set.
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Use timer-convert with t rather than doing it by hand.
* src/timefns.c (time_hz_ticks, time_form_stamp, lisp_time_form_stamp):
Remove; no longer needed.
(decode_lisp_time): Rturn the form instead of having a *PFORM arg.
All uses changed.
(time_arith): Just return TICKS if HZ is 1.
(Fencode_time): Remove argument FORM. All callers changed.
Do not attempt to encode time values; just encode
decoded (calendrical) times.
Unless CURRENT_TIME_LIST, just return VALUE since HZ is 1.
(Ftime_convert): New function, which does the time value
conversion that bleeding-edge encode-time formerly did.
Return TIME if it is easy to see that it is already
of the correct form.
(Fcurrent_time): Mention in doc that the form is planned to change.
* test/src/timefns-tests.el (decode-then-encode-time):
Don’t use (encode-time nil).
2019-08-06 00:38:52 +00:00
|
|
|
(car (time-convert (time-since xt-mouse-epoch)
|
|
|
|
1000))))
|
2014-05-08 01:46:15 +00:00
|
|
|
(w (window-at x y))
|
|
|
|
(ltrb (window-edges w))
|
|
|
|
(left (nth 0 ltrb))
|
2014-05-11 05:49:14 +00:00
|
|
|
(top (nth 1 ltrb))
|
|
|
|
(posn (if w
|
2019-02-12 23:20:40 +00:00
|
|
|
(posn-at-x-y (- x left) (- y top) w t)
|
2019-09-03 19:55:13 +00:00
|
|
|
(append (list nil (if (and tab-bar-mode
|
|
|
|
(or (not menu-bar-mode)
|
|
|
|
;; The tab-bar is on the
|
|
|
|
;; second row below menu-bar
|
2019-09-04 19:05:05 +00:00
|
|
|
(eq y 1)))
|
2019-09-03 19:55:13 +00:00
|
|
|
'tab-bar
|
|
|
|
'menu-bar))
|
2020-10-12 03:16:00 +00:00
|
|
|
(nthcdr 2 (posn-at-x-y x y (selected-frame))))))
|
2014-05-11 05:49:14 +00:00
|
|
|
(event (list type posn)))
|
|
|
|
(setcar (nthcdr 3 posn) timestamp)
|
|
|
|
|
|
|
|
;; Try to handle double/triple clicks.
|
|
|
|
(let* ((last-click (terminal-parameter nil 'xterm-mouse-last-click))
|
|
|
|
(last-type (nth 0 last-click))
|
|
|
|
(last-name (symbol-name last-type))
|
|
|
|
(last-time (nth 1 last-click))
|
|
|
|
(click-count (nth 2 last-click))
|
2017-09-30 21:47:56 +00:00
|
|
|
(last-x (nth 3 last-click))
|
|
|
|
(last-y (nth 4 last-click))
|
2014-05-11 05:49:14 +00:00
|
|
|
(this-time (float-time))
|
|
|
|
(name (symbol-name type)))
|
|
|
|
(cond
|
|
|
|
((not (string-match "down-" name))
|
|
|
|
;; For up events, make the up side match the down side.
|
|
|
|
(setq this-time last-time)
|
2014-07-19 16:56:40 +00:00
|
|
|
(when (and click-count (> click-count 1)
|
2014-05-11 05:49:14 +00:00
|
|
|
(string-match "down-" last-name)
|
|
|
|
(equal name (replace-match "" t t last-name)))
|
|
|
|
(xterm-mouse--set-click-count event click-count)))
|
2017-10-05 10:50:02 +00:00
|
|
|
((and last-time
|
|
|
|
double-click-time
|
|
|
|
(or (eq double-click-time t)
|
|
|
|
(> double-click-time (* 1000 (- this-time last-time))))
|
2017-09-30 21:47:56 +00:00
|
|
|
(<= (abs (- x last-x))
|
|
|
|
(/ double-click-fuzz 8))
|
|
|
|
(<= (abs (- y last-y))
|
|
|
|
(/ double-click-fuzz 8))
|
2014-05-11 05:49:14 +00:00
|
|
|
(equal last-name (replace-match "" t t name)))
|
|
|
|
(setq click-count (1+ click-count))
|
|
|
|
(xterm-mouse--set-click-count event click-count))
|
|
|
|
(t (setq click-count 1)))
|
|
|
|
(set-terminal-parameter nil 'xterm-mouse-last-click
|
2017-09-30 21:47:56 +00:00
|
|
|
(list type this-time click-count x y)))
|
2014-05-11 05:49:14 +00:00
|
|
|
|
|
|
|
(set-terminal-parameter nil 'xterm-mouse-x x)
|
|
|
|
(set-terminal-parameter nil 'xterm-mouse-y y)
|
|
|
|
(setq last-input-event event)))))
|
1995-10-09 17:08:20 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
2002-04-12 03:33:20 +00:00
|
|
|
(define-minor-mode xterm-mouse-mode
|
1995-10-09 17:08:20 +00:00
|
|
|
"Toggle XTerm mouse mode.
|
|
|
|
|
2005-04-04 01:13:59 +00:00
|
|
|
Turn it on to use Emacs mouse commands, and off to use xterm mouse commands.
|
2005-04-12 23:05:22 +00:00
|
|
|
This works in terminal emulators compatible with xterm. It only
|
|
|
|
works for simple uses of the mouse. Basically, only non-modified
|
|
|
|
single clicks are supported. When turned on, the normal xterm
|
|
|
|
mouse functionality for such clicks is still available by holding
|
|
|
|
down the SHIFT key while pressing the mouse button."
|
|
|
|
:global t :group 'mouse
|
2014-04-17 07:54:23 +00:00
|
|
|
(funcall (if xterm-mouse-mode 'add-hook 'remove-hook)
|
|
|
|
'terminal-init-xterm-hook
|
|
|
|
'turn-on-xterm-mouse-tracking-on-terminal)
|
2002-04-12 03:33:20 +00:00
|
|
|
(if xterm-mouse-mode
|
|
|
|
;; Turn it on
|
2005-09-11 03:06:33 +00:00
|
|
|
(progn
|
2020-10-03 21:46:30 +00:00
|
|
|
(setq mouse-position-function #'xterm-mouse-position-function
|
|
|
|
tty-menu-calls-mouse-position-function t)
|
2014-04-17 07:54:23 +00:00
|
|
|
(mapc #'turn-on-xterm-mouse-tracking-on-terminal (terminal-list)))
|
2002-04-12 03:33:20 +00:00
|
|
|
;; Turn it off
|
2014-04-17 07:54:23 +00:00
|
|
|
(mapc #'turn-off-xterm-mouse-tracking-on-terminal (terminal-list))
|
2020-10-03 21:46:30 +00:00
|
|
|
(setq mouse-position-function nil
|
|
|
|
tty-menu-calls-mouse-position-function nil)))
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2016-03-25 10:17:38 +00:00
|
|
|
(defun xterm-mouse-tracking-enable-sequence ()
|
|
|
|
"Return a control sequence to enable XTerm mouse tracking.
|
|
|
|
The returned control sequence enables basic mouse tracking, mouse
|
|
|
|
motion events and finally extended tracking on terminals that
|
|
|
|
support it. The following escape sequences are understood by
|
|
|
|
modern xterms:
|
|
|
|
|
|
|
|
\"\\e[?1000h\" \"Basic mouse mode\": Enables reports for mouse
|
|
|
|
clicks. There is a limit to the maximum row/column
|
|
|
|
position (<= 223), which can be reported in this
|
|
|
|
basic mode.
|
|
|
|
|
2020-10-03 21:46:30 +00:00
|
|
|
\"\\e[?1003h\" \"Mouse motion mode\": Enables reports for mouse
|
|
|
|
motion events.
|
2016-03-25 10:17:38 +00:00
|
|
|
|
|
|
|
\"\\e[?1005h\" \"UTF-8 coordinate extension\": Enables an
|
|
|
|
extension to the basic mouse mode, which uses UTF-8
|
|
|
|
characters to overcome the 223 row/column limit.
|
|
|
|
This extension may conflict with non UTF-8
|
|
|
|
applications or non UTF-8 locales. It is only
|
|
|
|
enabled when the option `xterm-mouse-utf-8' is
|
|
|
|
non-nil.
|
|
|
|
|
|
|
|
\"\\e[?1006h\" \"SGR coordinate extension\": Enables a newer
|
|
|
|
alternative extension to the basic mouse mode, which
|
|
|
|
overcomes the 223 row/column limit without the
|
|
|
|
drawbacks of the UTF-8 coordinate extension.
|
|
|
|
|
|
|
|
The two extension modes are mutually exclusive, where the last
|
|
|
|
given escape sequence takes precedence over the former."
|
|
|
|
(apply #'concat (xterm-mouse--tracking-sequence ?h)))
|
|
|
|
|
2014-04-17 07:54:23 +00:00
|
|
|
(defconst xterm-mouse-tracking-enable-sequence
|
2020-10-03 21:46:30 +00:00
|
|
|
"\e[?1000h\e[?1003h\e[?1005h\e[?1006h"
|
2014-04-17 07:54:23 +00:00
|
|
|
"Control sequence to enable xterm mouse tracking.
|
2015-03-25 01:04:00 +00:00
|
|
|
Enables basic mouse tracking, mouse motion events and finally
|
2021-09-14 06:43:18 +00:00
|
|
|
extended tracking on terminals that support it. The following
|
2015-03-25 01:04:00 +00:00
|
|
|
escape sequences are understood by modern xterms:
|
|
|
|
|
2015-05-20 02:08:11 +00:00
|
|
|
\"\\e[?1000h\" \"Basic mouse mode\": Enables reports for mouse
|
2021-09-14 06:43:18 +00:00
|
|
|
clicks. There is a limit to the maximum row/column
|
2015-03-25 01:04:00 +00:00
|
|
|
position (<= 223), which can be reported in this
|
|
|
|
basic mode.
|
|
|
|
|
2020-10-03 21:46:30 +00:00
|
|
|
\"\\e[?1003h\" \"Mouse motion mode\": Enables reports for mouse
|
|
|
|
motion events.
|
2015-03-25 01:04:00 +00:00
|
|
|
|
2015-05-20 02:08:11 +00:00
|
|
|
\"\\e[?1005h\" \"UTF-8 coordinate extension\": Enables an extension
|
2015-03-25 01:04:00 +00:00
|
|
|
to the basic mouse mode, which uses UTF-8
|
2021-09-14 06:43:18 +00:00
|
|
|
characters to overcome the 223 row/column limit. This
|
2015-03-25 01:04:00 +00:00
|
|
|
extension may conflict with non UTF-8 applications or
|
|
|
|
non UTF-8 locales.
|
|
|
|
|
2015-05-20 02:08:11 +00:00
|
|
|
\"\\e[?1006h\" \"SGR coordinate extension\": Enables a newer
|
2015-03-25 01:04:00 +00:00
|
|
|
alternative extension to the basic mouse mode, which
|
|
|
|
overcomes the 223 row/column limit without the
|
|
|
|
drawbacks of the UTF-8 coordinate extension.
|
|
|
|
|
|
|
|
The two extension modes are mutually exclusive, where the last
|
|
|
|
given escape sequence takes precedence over the former.")
|
1995-10-09 17:08:20 +00:00
|
|
|
|
2016-03-25 10:17:38 +00:00
|
|
|
(make-obsolete-variable
|
|
|
|
'xterm-mouse-tracking-enable-sequence
|
|
|
|
"use the function `xterm-mouse-tracking-enable-sequence' instead."
|
|
|
|
"25.1")
|
|
|
|
|
|
|
|
(defun xterm-mouse-tracking-disable-sequence ()
|
|
|
|
"Return a control sequence to disable XTerm mouse tracking.
|
|
|
|
The control sequence resets the modes set by
|
|
|
|
`xterm-mouse-tracking-enable-sequence'."
|
|
|
|
(apply #'concat (nreverse (xterm-mouse--tracking-sequence ?l))))
|
|
|
|
|
2014-04-17 07:54:23 +00:00
|
|
|
(defconst xterm-mouse-tracking-disable-sequence
|
2020-10-03 21:46:30 +00:00
|
|
|
"\e[?1006l\e[?1005l\e[?1003l\e[?1000l"
|
2014-04-17 07:54:23 +00:00
|
|
|
"Reset the modes set by `xterm-mouse-tracking-enable-sequence'.")
|
2005-09-11 03:06:33 +00:00
|
|
|
|
2016-03-25 10:17:38 +00:00
|
|
|
(make-obsolete-variable
|
|
|
|
'xterm-mouse-tracking-disable-sequence
|
|
|
|
"use the function `xterm-mouse-tracking-disable-sequence' instead."
|
|
|
|
"25.1")
|
|
|
|
|
|
|
|
(defun xterm-mouse--tracking-sequence (suffix)
|
|
|
|
"Return a control sequence to enable or disable mouse tracking.
|
|
|
|
SUFFIX is the last character of each escape sequence (?h to
|
|
|
|
enable, ?l to disable)."
|
|
|
|
(mapcar
|
|
|
|
(lambda (code) (format "\e[?%d%c" code suffix))
|
2020-10-03 21:46:30 +00:00
|
|
|
`(1000 1003 ,@(when xterm-mouse-utf-8 '(1005)) 1006)))
|
2016-03-25 10:17:38 +00:00
|
|
|
|
2007-10-18 19:06:44 +00:00
|
|
|
(defun turn-on-xterm-mouse-tracking-on-terminal (&optional terminal)
|
2005-09-11 03:06:33 +00:00
|
|
|
"Enable xterm mouse tracking on TERMINAL."
|
2009-02-05 07:12:27 +00:00
|
|
|
(when (and xterm-mouse-mode (eq t (terminal-live-p terminal))
|
|
|
|
;; Avoid the initial terminal which is not a termcap device.
|
2014-07-01 16:10:02 +00:00
|
|
|
;; FIXME: is there more elegant way to detect the initial
|
|
|
|
;; terminal?
|
2009-02-05 07:12:27 +00:00
|
|
|
(not (string= (terminal-name terminal) "initial_terminal")))
|
2007-10-18 19:06:44 +00:00
|
|
|
(unless (terminal-parameter terminal 'xterm-mouse-mode)
|
2012-07-14 15:40:12 +00:00
|
|
|
;; Simulate selecting a terminal by selecting one of its frames
|
2014-04-17 07:54:23 +00:00
|
|
|
;; so that we can set the terminal-local `input-decode-map'.
|
2007-10-18 19:06:44 +00:00
|
|
|
(with-selected-frame (car (frames-on-display-list terminal))
|
2012-07-14 15:40:12 +00:00
|
|
|
(define-key input-decode-map "\e[M" 'xterm-mouse-translate)
|
|
|
|
(define-key input-decode-map "\e[<" 'xterm-mouse-translate-extended))
|
2016-03-25 10:17:38 +00:00
|
|
|
(let ((enable (xterm-mouse-tracking-enable-sequence))
|
|
|
|
(disable (xterm-mouse-tracking-disable-sequence)))
|
|
|
|
(condition-case err
|
|
|
|
(send-string-to-terminal enable terminal)
|
|
|
|
;; FIXME: This should use a dedicated error signal.
|
|
|
|
(error (if (equal (cadr err) "Terminal is currently suspended")
|
|
|
|
nil ; The sequence will be sent upon resume.
|
|
|
|
(signal (car err) (cdr err)))))
|
|
|
|
(push enable (terminal-parameter nil 'tty-mode-set-strings))
|
|
|
|
(push disable (terminal-parameter nil 'tty-mode-reset-strings))
|
|
|
|
(set-terminal-parameter terminal 'xterm-mouse-mode t)
|
|
|
|
(set-terminal-parameter terminal 'xterm-mouse-utf-8
|
|
|
|
xterm-mouse-utf-8)))))
|
2005-09-11 03:06:33 +00:00
|
|
|
|
|
|
|
(defun turn-off-xterm-mouse-tracking-on-terminal (terminal)
|
|
|
|
"Disable xterm mouse tracking on TERMINAL."
|
2007-10-18 19:06:44 +00:00
|
|
|
;; 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)
|
2014-04-17 07:54:23 +00:00
|
|
|
(eq t (terminal-live-p terminal)))
|
2007-10-18 19:06:44 +00:00
|
|
|
;; 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).
|
2014-07-01 16:10:02 +00:00
|
|
|
(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)))))
|
2014-04-17 07:54:23 +00:00
|
|
|
(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)))
|
2005-09-11 03:06:33 +00:00
|
|
|
|
1995-10-09 17:08:20 +00:00
|
|
|
(provide 'xt-mouse)
|
|
|
|
|
|
|
|
;;; xt-mouse.el ends here
|