summaryrefslogtreecommitdiff
path: root/lisp/eshell
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2004-10-19 16:53:23 +0000
committerRichard M. Stallman <rms@gnu.org>2004-10-19 16:53:23 +0000
commitfcb5aa97ed3b6597b0a64b31ecefbd94a34d3393 (patch)
tree127ef2ea8db5a885a727ccaa0664c24ed66484f1 /lisp/eshell
parentc64e2e679f89a519052f8378238be6147d27b91f (diff)
downloademacs-fcb5aa97ed3b6597b0a64b31ecefbd94a34d3393.tar.gz
(eshell-grep): Don't bind compilation-process-setup-function.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-unix.el6
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el
index 43d3c9c4e5e..ce30cec6604 100644
--- a/lisp/eshell/em-unix.el
+++ b/lisp/eshell/em-unix.el
@@ -708,11 +708,7 @@ external command."
(eshell-parse-command (concat "*" command)
(eshell-stringify-list
(eshell-flatten-list args))))
- (let* ((compilation-process-setup-function
- (list 'lambda nil
- (list 'setq 'process-environment
- (list 'quote (eshell-copy-environment)))))
- (args (mapconcat 'identity
+ (let* ((args (mapconcat 'identity
(mapcar 'shell-quote-argument
(eshell-stringify-list
(eshell-flatten-list args)))