]> git.eshelyaron.com Git - emacs.git/commitdiff
(bg-window-from-x-y): Use
authorGerd Moellmann <gerd@gnu.org>
Fri, 7 Sep 2001 11:33:32 +0000 (11:33 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 7 Sep 2001 11:33:32 +0000 (11:33 +0000)
get-window-with-predicate.

lisp/term/bg-mouse.el

index e4b78d18ea30255511a4cd4d06c3633e78f3e9c4..0035f59acdd3a4b534189c81b6072150c1b9bff0 100644 (file)
@@ -1,6 +1,6 @@
 ;;; bg-mouse.el --- GNU Emacs code for BBN Bitgraph mouse
 
-;; Copyright (C) Free Software Foundation, Inc. Oct 1985.
+;; Copyright (C) 2001 Free Software Foundation, Inc. Oct 1985.
 
 ;; Author: John Robinson <jr@bbn-unix.arpa>
 ;;     Stephen Gildea <gildea@bbn.com>
@@ -255,7 +255,8 @@ X and Y are 0-based character positions in the window."
 (defun bg-window-from-x-y (x y)
   "Find window corresponding to screen coordinates.
 X and Y are 0-based character positions on the screen."
-  (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))))
 
 (defun bg-command-execute (bg-command)
   (if (commandp bg-command)