emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: tiny patch to ange-ftp


From: Katsumi Yamaoka
Subject: Re: tiny patch to ange-ftp
Date: Thu, 08 Sep 2005 13:46:53 +0900
User-agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux)

>>>>> In <address@hidden> Katsumi Yamaoka wrote:

> *** ange-ftp.el~      Thu Aug 11 21:55:21 2005
> --- ange-ftp.el       Thu Sep  8 03:57:18 2005
> ***************
> *** 1656,1662 ****

>             ;; handle hash mark printing
>             (and ange-ftp-process-busy
> !                (string-match "\\`#+\\'" str)
>                  (setq str (ange-ftp-process-handle-hash str)))
>             (comint-output-filter proc str)
>             ;; Replace STR by the result of the comint processing.
> --- 1656,1662 ----

>             ;; handle hash mark printing
>             (and ange-ftp-process-busy
> !                (string-match "#+" str)
>                  (setq str (ange-ftp-process-handle-hash str)))
>             (comint-output-filter proc str)
>             ;; Replace STR by the result of the comint processing.

Please replace "#+" with the same "^#+$" as what is used in
Emacs 21.4.  While "\\`#+\\'" is intended to match the whole
string, `str' often contains newline characters.  This is the
true cause in which this function breaks the synchronous
operation.  I guess someone changed it mistakenly.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]