From: Stefan Monnier Date: Mon, 12 Jun 2000 05:17:53 +0000 (+0000) Subject: (Man-build-man-command): Don't quote lambda. X-Git-Tag: emacs-pretest-21.0.90~3379 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d6373ed514670fb131fef53d957f6080e0979237;p=emacs.git (Man-build-man-command): Don't quote lambda. --- 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))