From d6373ed514670fb131fef53d957f6080e0979237 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 12 Jun 2000 05:17:53 +0000 Subject: [PATCH] (Man-build-man-command): Don't quote lambda. --- lisp/man.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/man.el b/lisp/man.el index 7efe6bd9a69..03893d5cf5c 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -462,10 +462,10 @@ that string instead of from the current buffer." (pargs (cdr (car flist)))) (setq command (concat command " | " pcom " " - (mapconcat '(lambda (phrase) - (if (not (stringp phrase)) - (error "Malformed Man-filter-list")) - phrase) + (mapconcat (lambda (phrase) + (if (not (stringp phrase)) + (error "Malformed Man-filter-list")) + phrase) pargs " "))) (setq flist (cdr flist)))) command)) -- 2.39.5