* lisp/face-remap.el (text-scale-pinch): Stop waiting for
more events.
(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))