[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: plink to a CentOS box
From: |
Michael Albinus |
Subject: |
Re: plink to a CentOS box |
Date: |
Tue, 14 Apr 2009 16:12:58 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.91 (gnu/linux) |
Stewart Bryson <address@hidden> writes:
> 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.