From 1ac26bf578de6439797d13b82d10658da5d4f3f9 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 18 Sep 1998 09:13:46 +0000 Subject: [PATCH] (Man-init-defvars): Avoid trailing nil on Man-filter-list. --- lisp/man.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/man.el b/lisp/man.el index 47475d28b2d..b51189985a0 100644 --- a/lisp/man.el +++ b/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)) ))) ) -- 2.39.2