all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* commit 8147d3c27c breaks grep over tramp
@ 2019-04-09 14:28 John Shahid
  2019-04-09 15:02 ` Michael Albinus
  0 siblings, 1 reply; 5+ messages in thread
From: John Shahid @ 2019-04-09 14:28 UTC (permalink / raw)
  To: Emacs developers

Hi all,

Looks like commit 8147d3c27c breaks `grep' when ran on a remote host
using tramp.  Previous to the commit I would see the list of grep hits,
but after this commit there is a command prompt as part of the grep
hits.  This makes the first hit unclickable.  I bisected the history to
find the offending commit and found the following change to be the
cause:

> @@ -2912,8 +2903,7 @@ tramp-sh-handle-make-process
>  		    ;; otherwise we might be interrupted by
>  		    ;; `verify-visited-file-modtime'.
>  		    (let ((buffer-undo-list t)
> -			  (inhibit-read-only t)
> -			  (mark (point-max)))
> +			  (inhibit-read-only t))
>  		      (clear-visited-file-modtime)
>  		      (narrow-to-region (point-max) (point-max))
>  		      ;; We call `tramp-maybe-open-connection', in
> @@ -2926,9 +2916,7 @@ tramp-sh-handle-make-process
>  			(let ((pid (tramp-send-command-and-read v "echo $$")))
>  			  (process-put p 'remote-pid pid)
>  			  (tramp-set-connection-property p "remote-pid" pid))
> -			(widen)
> -			(delete-region mark (point-max))
> -			(narrow-to-region (point-max) (point-max))
> +			(delete-region (point-min) (point-max))

Is anyone else seeing the same thing or is it something with my
configuration ?

Cheers,

JS



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-04-14 21:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-09 14:28 commit 8147d3c27c breaks grep over tramp John Shahid
2019-04-09 15:02 ` Michael Albinus
2019-04-09 17:38   ` John Shahid
2019-04-13 10:39     ` Michael Albinus
2019-04-14 21:54       ` John Shahid

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.