1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-25 19:11:56 +00:00

* net/tramp.el (tramp-process-one-action): Embed regexp in

parentheses, before adding end-of-buffer construct.  Suggested by
Markus Triska <markus.triska@gmx.at>.
This commit is contained in:
Michael Albinus 2008-10-14 05:53:56 +00:00
parent e69a00b749
commit 95d610cb98
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-10-14 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-process-one-action): Embed regexp in
parentheses, before adding end-of-buffer construct. Suggested by
Markus Triska <markus.triska@gmx.at>.
2008-10-13 Ulf Jasper <ulf.jasper@web.de>
* net/newst-plainview.el (w3m-toggle-inline-image):

View File

@ -5641,7 +5641,7 @@ The terminal type can be configured with `tramp-terminal-type'."
(setq todo actions)
(while todo
(setq item (pop todo))
(setq pattern (concat (symbol-value (nth 0 item)) "\\'"))
(setq pattern (format "\\(%s\\)\\'" (symbol-value (nth 0 item))))
(setq action (nth 1 item))
(tramp-message
vec 5 "Looking for regexp \"%s\" from remote shell" pattern)