GNU bug report logs -
#76248
[Feature Request] user-option for killing buffer in `quit-window'.
Previous Next
Full log
View this message in rfc822 format
martin rudalics via "Bug reports for GNU Emacs, the Swiss army knife of
text editors" <bug-gnu-emacs <at> gnu.org> writes:
> +either a member of this list or is derived from a member of this list.
> +In either case it will kill the buffer regardless of the value of the
> +KILL argument."
> + :type '(repeat (symbol :tag "Major mode"))
> + :version "31.1"
> + :group 'windows)
Shouldn't it be something like this?
+ :type '(choice (repeat (symbol :tag "Major mode")) boolean)
+ :version "31.1"
+ :group 'windows)
Otherwise it would give a warning due type.
> + (let (kill-from-mode)
> + (with-current-buffer (window-buffer (window-normalize-window window))
> + ;; Run the hook from the buffer implied to get any buffer-local
> + ;; values.
> + (run-hooks 'quit-window-hook)
> +
> + (setq kill-from-mode
> + (or (eq quit-window-kill-buffer-modes t)
> + (and (listp quit-window-kill-buffer-modes)
> + (derived-mode-p quit-window-kill-buffer-modes)))))
Wouldn't it be more convenient to put this into the let varlist?
+ (let ((kill-from-mode
+ (or (eq quit-window-kill-buffer-modes t)
+ (and (listp quit-window-kill-buffer-modes)
+ (derived-mode-p quit-window-kill-buffer-modes)))))
... or is there something i'm missing?
--
- E.G via GNU Emacs.
This bug report was last modified 113 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.