On Tue, Apr 14, 2009 at 10:12 AM, Michael Albinus
<address@hidden> wrote:
> Although you are right that this is a problem, I'm not certain it's THE
> problem. Both the default value for 'tramp-shell-prompt-pattern' and your
> recommended modification actually match the screen output higher up. They
> both match the first '#' in the output portion:
See the code in `tramp-process-one-action':
(setq pattern (format "\\(%s\\)\\'" (symbol-value (nth 0 item))))
That means, "\\'" is appended, which stands for end-of-buffer in this case.
> Thanks.
Best regards, Michael.