]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix pinch-to-scale on real X servers and NS
authorPo Lu <luangruo@yahoo.com>
Sat, 8 Jan 2022 12:53:02 +0000 (20:53 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 8 Jan 2022 12:53:02 +0000 (20:53 +0800)
* lisp/face-remap.el (text-scale-pinch): Stop waiting for
more events.

lisp/face-remap.el

index 95207959dd37dbb996377d3c0c288e587fba1f0d..00560f9d2e11da6770aeb64973d71b10702d76f9 100644 (file)
@@ -400,15 +400,6 @@ a top-level keymap, `text-scale-increase' or
   (interactive "e")
   (when (not (eq (event-basic-type event) 'pinch))
     (error "`text-scale-pinch' bound to bad event type"))
-  (let ((evt))
-    (catch 'done
-      (while t
-        (unless (and (setq evt (read-event nil nil 0.01))
-                     (eq (car evt) 'pinch))
-          (throw 'done nil))))
-    (when (and (consp evt)
-               (eq (car evt) 'pinch))
-      (setq event evt)))
   (let ((window (posn-window (nth 1 event)))
         (scale (nth 4 event))
         (dx (nth 2 event))