summaryrefslogtreecommitdiff
path: root/lisp/man.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-06-12 05:17:53 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-06-12 05:17:53 +0000
commitd6373ed514670fb131fef53d957f6080e0979237 (patch)
tree32049f3ccd9af7dc3a21e849e8ed2d3ff7fe6e6e /lisp/man.el
parentb68d1f2697b8ce44000478039fd9fcb3e83af96e (diff)
downloademacs-d6373ed514670fb131fef53d957f6080e0979237.tar.gz
(Man-build-man-command): Don't quote lambda.
Diffstat (limited to 'lisp/man.el')
-rw-r--r--lisp/man.el8
1 files 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))