mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 10:31:37 -08:00
* xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
now that unicode is used (Bug#6594).
This commit is contained in:
parent
5cbce271a6
commit
243881ed13
2 changed files with 7 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
|
||||
now that unicode is used (Bug#6594).
|
||||
|
||||
2010-07-14 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* simple.el (push-mark-command): Set the selection if
|
||||
|
|
|
|||
|
|
@ -122,8 +122,8 @@
|
|||
;; read xterm sequences above ascii 127 (#x7f)
|
||||
(defun xterm-mouse-event-read ()
|
||||
(let ((c (read-char)))
|
||||
(if (< c 0)
|
||||
(+ c #x8000000 128)
|
||||
(if (> c #x3FFF80)
|
||||
(+ 128 (- c #x3FFF80))
|
||||
c)))
|
||||
|
||||
(defun xterm-mouse-truncate-wrap (f)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue