From 708241a04a696af8bc4573b867ea7792e0bf4a52 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Fri, 4 Feb 2005 07:15:24 +0000 Subject: [PATCH] Fixed. --- lisp/ChangeLog | 2 +- lisp/riece-filter.el | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9a595e3..117325d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,6 @@ 2005-02-04 Daiki Ueno - * riece-filter.el (riece-filter): Accept lines which ends with LF. + * riece-filter.el (riece-filter): Accept lines which end with LF. * riece-300.el (riece-353-string): Renamed from riece-353-users. (riece-handle-353-message): Don't parse the reply. diff --git a/lisp/riece-filter.el b/lisp/riece-filter.el index 65b252d..b2ae24f 100644 --- a/lisp/riece-filter.el +++ b/lisp/riece-filter.el @@ -76,16 +76,16 @@ (setq riece-read-point (point)))) (beginning-of-line) (while (and (not (eobp)) - (looking-at ".*\r?\n")) ;the input line is not finished + (looking-at "[^\r]*\r?\n")) ;the input line is not finished (save-excursion (if (looking-at - ":\\([^ ]+\\) +\\([0-5][0-9][0-9]\\) +\\([^ ]+\\) +\\(.*\\)\r?\n") + ":\\([^ ]+\\) +\\([0-5][0-9][0-9]\\) +\\([^ ]+\\) +\\([^\r]*\\)\r?\n") (riece-handle-numeric-reply (match-string 1) ;prefix (string-to-number (match-string 2)) ;number (match-string 3) ;name (match-string 4)) ;reply string - (if (looking-at "\\(:\\([^ ]+\\) +\\)?\\([^ ]+\\) +\\(.*\\)\r?\n") + (if (looking-at "\\(:\\([^ ]+\\) +\\)?\\([^ ]+\\) +\\([^\r]*\\)\r?\n") (riece-handle-message (match-string 2) ;optional prefix (match-string 3) ;command -- 2.25.1