1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

* 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).
This commit is contained in:
Juri Linkov 2011-08-10 21:29:31 +03:00
parent 7be1c708c5
commit ac8cf6e698
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2011-08-10 Juri Linkov <juri@jurta.org>
* progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
2011-08-09 Chong Yidong <cyd@stupidchicken.com>
* hi-lock.el (hi-lock-unface-buffer): Fix interactive spec

View File

@ -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))