aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/term/sup-mouse.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/term/sup-mouse.el b/lisp/term/sup-mouse.el
index 849569e1847..d48ad3d8581 100644
--- a/lisp/term/sup-mouse.el
+++ b/lisp/term/sup-mouse.el
@@ -193,6 +193,7 @@ X and Y are 0-based character positions in the window."
193(defun sup-pos-to-window (x y) 193(defun sup-pos-to-window (x y)
194 "Find window corresponding to frame coordinates. 194 "Find window corresponding to frame coordinates.
195X and Y are 0-based character positions on the frame." 195X and Y are 0-based character positions on the frame."
196 (some-window (lambda (w) (coordinates-in-window-p (cons x y) w)))) 196 (get-window-with-predicate (lambda (w)
197 (coordinates-in-window-p (cons x y) w))))
197 198
198;;; sup-mouse.el ends here 199;;; sup-mouse.el ends here