summaryrefslogtreecommitdiff
path: root/lisp/window.el
diff options
context:
space:
mode:
authorMartin Rudalics <rudalics@gmx.at>2019-03-05 11:01:14 +0100
committerMartin Rudalics <rudalics@gmx.at>2019-03-05 11:01:14 +0100
commit9b93e3b0759d562989283eaecf32e075f984c18c (patch)
tree83fbe2ef8cd2c22b0ffe9f574e740722c16835e3 /lisp/window.el
parenta552cc21dc324b1be71c181684b0ab2e6cf0a60f (diff)
downloademacs-9b93e3b0759d562989283eaecf32e075f984c18c.tar.gz
Fix interactive spec of some functions in window.el (Bug#34749)
* lisp/window.el (delete-windows-on, quit-windows-on) (display-buffer-other-frame): Interactively, permit existing buffers only (Bug#34749).
Diffstat (limited to 'lisp/window.el')
-rw-r--r--lisp/window.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/window.el b/lisp/window.el
index 80828bb35c8..9566429627d 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -4711,7 +4711,7 @@ frames.
When a window showing BUFFER-OR-NAME is dedicated and the only
window of its frame, that frame is deleted when there are other
frames left."
- (interactive "BDelete windows on (buffer):\nP")
+ (interactive "bDelete windows on (buffer):\nP")
(let ((buffer (window-normalize-buffer buffer-or-name))
;; Handle the "inverted" meaning of the FRAME argument wrt other
;; `window-list-1' based function.
@@ -4894,7 +4894,7 @@ BUFFER-OR-NAME. Optional argument FRAME is handled as by
This function calls `quit-window' on all candidate windows
showing BUFFER-OR-NAME."
- (interactive "BQuit windows on (buffer):\nP")
+ (interactive "bQuit windows on (buffer):\nP")
(let ((buffer (window-normalize-buffer buffer-or-name))
;; Handle the "inverted" meaning of the FRAME argument wrt other
;; `window-list-1' based function.
@@ -7188,7 +7188,7 @@ on all the frames on the current terminal, skipping the selected
window; if that fails, it pops up a new frame.
This uses the function `display-buffer' as a subroutine; see
its documentation for additional customization information."
- (interactive "BDisplay buffer in other frame: ")
+ (interactive "bDisplay buffer in other frame: ")
(display-buffer buffer display-buffer--other-frame-action t))
;;; `display-buffer' action functions: