From: Gerd Moellmann Date: Fri, 7 Sep 2001 11:35:09 +0000 (+0000) Subject: (refer-find-entry-internal): Use X-Git-Tag: emacs-pretest-21.0.106~205 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2baa32527621a33df7f6ec303adedf9141d753ef;p=emacs.git (refer-find-entry-internal): Use get-window-with-predicate. --- diff --git a/lisp/textmodes/refer.el b/lisp/textmodes/refer.el index 9cb10914984..e06ef862791 100644 --- a/lisp/textmodes/refer.el +++ b/lisp/textmodes/refer.el @@ -1,6 +1,6 @@ ;;; refer.el --- look up references in bibliography files -;; Copyright (C) 1992, 1996 Free Software Foundation, Inc. +;; Copyright (C) 1992, 1996, 2001 Free Software Foundation, Inc. ;; Author: Ashwin Ram ;; Maintainer: Gernot Heiser @@ -196,13 +196,14 @@ found on the last refer-find-entry or refer-find-next-entry." ;; if a bibliography file is already displayed in a window, use ;; that one, otherwise use any window other than the current one (setq new-window - (some-window (lambda (w) - (while (and (not (null (setq file (nth n files)))) - (setq n (1+ n)) - (not (string-equal file - (buffer-file-name - (window-buffer w)))))) - file))) + (get-window-with-predicate + (lambda (w) + (while (and (not (null (setq file (nth n files)))) + (setq n (1+ n)) + (not (string-equal file + (buffer-file-name + (window-buffer w)))))) + file))) (unless new-window ;; didn't find bib file in any window: (when (one-window-p 'nomini)