emacs-31 aec7a5c73f8: ; * lisp/window.el (quit-restore-window-no-switch): Fix customization type.
Martin Rudalics via Mailing list for Emacs changes <[email protected]>
| Newsgroups | gmane.emacs.diffs |
|---|---|
| Message-ID | <[email protected]> |
branch: emacs-31 commit aec7a5c73f80560373d964f0f9a03d1b9efe49d3 Author: Martin Rudalics <[email protected]> Commit: Martin Rudalics <[email protected]> ; * lisp/window.el (quit-restore-window-no-switch): Fix customization type. --- lisp/window.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/window.el b/lisp/window.el index 06128cf0483..d958bfcd1e2 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -5360,7 +5360,9 @@ The net effect of making this non-nil is that if `quit-restore-window' doesn't find a suitable buffer previously shown in the window, it will rather try to delete the window (and maybe its frame) than show a buffer the window has never shown before." - :type 'boolean + :type '(choice (const :tag "Switch to previous buffer" nil) + (const :tag "Skip previous buffer" skip-first) + (const :tag "Try to delete window" t)) :version "31.1" :group 'windows)