diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/grep.el | 3 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-08-09 Chong Yidong <cyd@stupidchicken.com> | 7 | 2011-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)) |