mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +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
2 changed files with 7 additions and 1 deletions
|
|
@ -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 a new issue