]> git.eshelyaron.com Git - emacs.git/commitdiff
(Man-build-man-command): Don't quote lambda.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Jun 2000 05:17:53 +0000 (05:17 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Jun 2000 05:17:53 +0000 (05:17 +0000)
lisp/man.el

index 7efe6bd9a69b0d53f18f4512e7cafd0bf5b16d87..03893d5cf5c2e8301a46be1c76288d203eabb47a 100644 (file)
@@ -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))