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:
parent
e69a00b749
commit
95d610cb98
@ -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):
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user