aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/progmodes/grep.el3
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 66874bdb29..780ea61a7a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2011-08-10 Juri Linkov <[email protected]>
+
+ * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
+ This finishes incomplete reversion of 2011-06-30T01:09:[email protected]
+ intended by 2011-07-06T15:49:[email protected].
+
2011-08-09 Chong Yidong <[email protected]>
* hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index 5561575ea2..db8e82193b 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -1023,8 +1023,7 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]."
(read-from-minibuffer "Confirm: "
command nil nil 'grep-find-history))
(add-to-history 'grep-find-history command))
- (let ((default-directory dir)
- (process-connection-type nil))
+ (let ((default-directory dir))
(compilation-start command 'grep-mode))
;; Set default-directory if we started rgrep in the *grep* buffer.
(if (eq next-error-last-buffer (current-buffer))