From 04aa76bb9205a0d5f1feff091c6c561bd9db54a5 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Wed, 22 Nov 2023 13:48:57 +0100 Subject: [PATCH] Fix CRLF handling in Tramp * lisp/net/tramp-sh.el (tramp-send-command-and-read): Use 'space' instead of 'blank' in rx expression, in order to handle also CR and alike. Reported by Dominique Quatravaux . --- lisp/net/tramp-sh.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 186ef12775a..3b47dafcb46 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -5540,7 +5540,7 @@ raises an error." (unless noerror signal-hook-function))) (read (current-buffer))) ;; Error handling. - (when (search-forward-regexp (rx (not blank)) (line-end-position) t) + (when (search-forward-regexp (rx (not space)) (line-end-position) t) (error nil))) (error (unless noerror (tramp-error -- 2.39.5