diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-09-07 11:34:17 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-09-07 11:34:17 +0000 |
commit | 75377eba1c524a0a210abfaace2f5b4fe2da3392 (patch) | |
tree | 92de4173f53397bb0d3a9471bf9bef36b73aa39c /lisp/term/sup-mouse.el | |
parent | 4f3d7805a210edc0e0267ca6e6eadb176f8f4278 (diff) | |
download | emacs-75377eba1c524a0a210abfaace2f5b4fe2da3392.tar.gz |
(sup-pos-to-window): Use
get-window-with-predicate.
Diffstat (limited to 'lisp/term/sup-mouse.el')
-rw-r--r-- | lisp/term/sup-mouse.el | 3 |
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." (defun sup-pos-to-window (x y) "Find window corresponding to frame coordinates. X and Y are 0-based character positions on the frame." - (some-window (lambda (w) (coordinates-in-window-p (cons x y) w)))) + (get-window-with-predicate (lambda (w) + (coordinates-in-window-p (cons x y) w)))) ;;; sup-mouse.el ends here |