1
Fork 0
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:
Andreas Schwab 1998-09-18 09:13:46 +00:00
parent e1c3516e8e
commit 1ac26bf578

View file

@ -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))
)))
)