aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2011-08-10 21:29:31 +0300
committerJuri Linkov2011-08-10 21:29:31 +0300
commitac8cf6e698c4612dc3ed195dbf1348db67f59fe5 (patch)
tree5b0bc5f89e775da013c51b7b3d73f29b88db3f5e
parent7be1c708c5abc7dea388d45454bd19bff07b7943 (diff)
downloademacs-ac8cf6e698c4612dc3ed195dbf1348db67f59fe5.tar.gz
emacs-ac8cf6e698c4612dc3ed195dbf1348db67f59fe5.zip
* lisp/progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org (2011-06-30) intended by 2011-07-06T15:49:19Z!larsi@gnus.org (2011-07-06).
-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 66874bdb29a..780ea61a7ac 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12011-08-10 Juri Linkov <juri@jurta.org>
2
3 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
4 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
5 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
6
12011-08-09 Chong Yidong <cyd@stupidchicken.com> 72011-08-09 Chong Yidong <cyd@stupidchicken.com>
2 8
3 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec 9 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index 5561575ea20..db8e82193b3 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]."
1023 (read-from-minibuffer "Confirm: " 1023 (read-from-minibuffer "Confirm: "
1024 command nil nil 'grep-find-history)) 1024 command nil nil 'grep-find-history))
1025 (add-to-history 'grep-find-history command)) 1025 (add-to-history 'grep-find-history command))
1026 (let ((default-directory dir) 1026 (let ((default-directory dir))
1027 (process-connection-type nil))
1028 (compilation-start command 'grep-mode)) 1027 (compilation-start command 'grep-mode))
1029 ;; Set default-directory if we started rgrep in the *grep* buffer. 1028 ;; Set default-directory if we started rgrep in the *grep* buffer.
1030 (if (eq next-error-last-buffer (current-buffer)) 1029 (if (eq next-error-last-buffer (current-buffer))