mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 06:20:43 -08:00
Don't quote lambda expressions with `quote'.
This commit is contained in:
parent
782fc81943
commit
4f91a8160f
77 changed files with 466 additions and 493 deletions
|
|
@ -8594,10 +8594,10 @@ the appropriate statement modifier."
|
|||
(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…
Add table
Add a link
Reference in a new issue