+2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
+
+ * progmodes/grep.el (rgrep): Bind `process-connection-type' to
+ nil, because using a pty is apparently too slow (bug #895).
+
2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
* mail/sendmail.el (sendmail-query-once): New function.
(setq dir default-directory))
(if (null files)
(if (not (string= regexp grep-find-command))
- (compilation-start regexp 'grep-mode))
+ (let ((process-connection-type nil))
+ (compilation-start regexp 'grep-mode)))
(setq dir (file-name-as-directory (expand-file-name dir)))
(require 'find-dired) ; for `find-name-arg'
(let ((command (grep-expand-template
(read-from-minibuffer "Confirm: "
command nil nil 'grep-find-history))
(add-to-history 'grep-find-history command))
- (let ((default-directory dir))
+ (let ((default-directory dir)
+ (process-connection-type nil))
(compilation-start command 'grep-mode))
;; Set default-directory if we started rgrep in the *grep* buffer.
(if (eq next-error-last-buffer (current-buffer))