mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-02-02 20:16:25 +00:00
(Man-build-man-command): Don't quote lambda.
This commit is contained in:
parent
b68d1f2697
commit
d6373ed514
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user