mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(lisp-complete-symbol): Don't call delete-windows-on with an inexistent buffer.
This commit is contained in:
parent
a425bd036e
commit
398de7181d
2 changed files with 9 additions and 3 deletions
|
|
@ -1,6 +1,11 @@
|
||||||
|
2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
|
* emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
|
||||||
|
delete-windows-on with an inexistent buffer.
|
||||||
|
|
||||||
2005-12-22 Nick Roberts <nickrob@snap.net.nz>
|
2005-12-22 Nick Roberts <nickrob@snap.net.nz>
|
||||||
|
|
||||||
* progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
|
* progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
|
||||||
Delete defcustom variable :tag names.
|
Delete defcustom variable :tag names.
|
||||||
|
|
||||||
2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
|
||||||
|
|
@ -589,8 +589,9 @@ considered."
|
||||||
(if (> (length list) 1)
|
(if (> (length list) 1)
|
||||||
(with-output-to-temp-buffer "*Completions*"
|
(with-output-to-temp-buffer "*Completions*"
|
||||||
(display-completion-list list pattern))
|
(display-completion-list list pattern))
|
||||||
(delete-windows-on "*Completions*")))
|
(if (get-buffer "*Completions*")
|
||||||
|
(delete-windows-on "*Completions*"))))
|
||||||
(message "Making completion list...%s" "done")))))))
|
(message "Making completion list...%s" "done")))))))
|
||||||
|
|
||||||
;;; arch-tag: aa7fa8a4-2e6f-4e9b-9cd9-fef06340e67e
|
;; arch-tag: aa7fa8a4-2e6f-4e9b-9cd9-fef06340e67e
|
||||||
;;; lisp.el ends here
|
;;; lisp.el ends here
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue