mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
; Fix documentation of a recent commit
* lisp/tab-line.el (tab-line-tabs-window-buffers-filter-function): Fix wording of option value :tags. (tab-line-tabs-non-excluded): Doc fix. (Bug#79159)
This commit is contained in:
parent
d487591edb
commit
56bfd63bb8
1 changed files with 3 additions and 3 deletions
|
|
@ -573,8 +573,8 @@ generate the group name."
|
|||
#'identity
|
||||
"Filter which buffers should be displayed in the tab line."
|
||||
:type '(choice function
|
||||
(const :tag "No filter the buffers" identity)
|
||||
(const :tag "Show non-excluded buffers only" tab-line-tabs-non-excluded))
|
||||
(const :tag "Show all buffers" identity)
|
||||
(const :tag "Omit excluded buffers" tab-line-tabs-non-excluded))
|
||||
:group 'tab-line
|
||||
:version "31.1")
|
||||
|
||||
|
|
@ -582,7 +582,7 @@ generate the group name."
|
|||
(defvar tab-line-exclude-modes)
|
||||
|
||||
(defun tab-line-tabs-non-excluded (buffers)
|
||||
"Filter BUFFERS and return non-excluded buffers list.
|
||||
"Filter BUFFERS to remove excluded buffers from the list.
|
||||
Intended to be used in `tab-line-tabs-window-buffers-filter-function'."
|
||||
(seq-remove
|
||||
(lambda (b)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue