mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(Man-init-defvars): Avoid trailing nil on
Man-filter-list.
This commit is contained in:
parent
e1c3516e8e
commit
1ac26bf578
1 changed files with 6 additions and 4 deletions
10
lisp/man.el
10
lisp/man.el
|
|
@ -381,7 +381,8 @@ This is necessary if one wants to dump man.el with emacs."
|
|||
nil))))
|
||||
|
||||
(setq Man-filter-list
|
||||
(list
|
||||
;; Avoid trailing nil which confuses customize.
|
||||
(apply 'list
|
||||
(cons
|
||||
Man-sed-command
|
||||
(list
|
||||
|
|
@ -415,9 +416,10 @@ This is necessary if one wants to dump man.el with emacs."
|
|||
"'"
|
||||
))
|
||||
(if (not Man-uses-untabify-flag)
|
||||
(cons
|
||||
Man-untabify-command
|
||||
Man-untabify-command-args)
|
||||
;; The outer list will be stripped off by apply.
|
||||
(list (cons
|
||||
Man-untabify-command
|
||||
Man-untabify-command-args))
|
||||
)))
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue