]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-complete-symbol): Make get-buffer-window find windows in other frames.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Mar 2007 00:54:08 +0000 (00:54 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Mar 2007 00:54:08 +0000 (00:54 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp.el

index dd157ce99843c5070f85262b9c162ebf99369ab5..53e7f65c968c6547576ca73240c7daa63f92ad89 100644 (file)
@@ -1,3 +1,14 @@
+2007-03-28  David Hansen  <david.hansen@gmx.net>  (tiny change)
+
+       * emacs-lisp/lisp.el (lisp-complete-symbol):
+       Fix call to get-buffer-window to find windows in other frames.
+
+2007-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * comint.el (comint-proc-query, comint-dynamic-list-completions):
+       Fix calls to get-buffer-window to find windows in other frames.
+       Reported by David Hansen <david.hansen@gmx.net>.
+
 2007-03-27   Kevin Ryde  <user42@zip.com.au>
 
        * info.el (Info-display-images-node):  On a text-only terminal, show
index 947b4063ad46e4be24666c5a1adc34ee67b24ca2..5254a8389b4fc20034ac19404f001f52cd3b0e5d 100644 (file)
@@ -582,8 +582,7 @@ symbols with function definitions are considered.  Otherwise, all
 symbols with function definitions, values or properties are
 considered."
   (interactive)
-
-  (let ((window (get-buffer-window "*Completions*")))
+  (let ((window (get-buffer-window "*Completions*" 0)))
     (if (and (eq last-command this-command)
             window (window-live-p window) (window-buffer window)
             (buffer-name (window-buffer window)))