From e816ecc37b604abeacc5f7bf030ca9230b7f3d41 Mon Sep 17 00:00:00 2001 From: ueno Date: Sat, 5 Feb 2005 12:53:10 +0000 Subject: [PATCH] * riece-filter.el (riece-chomp-string): New function. (riece-filter): Use it. --- lisp/ChangeLog | 5 +++++ lisp/riece-filter.el | 15 ++++++++++----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7765ebc..34e7807 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2005-02-05 Daiki Ueno + * riece-filter.el (riece-chomp-string): New function. + (riece-filter): Use it. + +2005-02-05 Daiki Ueno + * Riece: Version 1.0.7 released. * riece-version.el (riece-version-number): Bump up to 1.0.7. diff --git a/lisp/riece-filter.el b/lisp/riece-filter.el index b2ae24f..dc72e92 100644 --- a/lisp/riece-filter.el +++ b/lisp/riece-filter.el @@ -64,6 +64,11 @@ (riece-ignore-errors (symbol-name after-hook) (run-hook-with-args-until-success after-hook prefix string))))) +(defun riece-chomp-string (string) + (if (string-match "\r?\n\\'" string) + (substring string 0 (match-beginning 0)) + string)) + (defun riece-filter (process input) (save-excursion (set-buffer (process-buffer process)) @@ -76,20 +81,20 @@ (setq riece-read-point (point)))) (beginning-of-line) (while (and (not (eobp)) - (looking-at "[^\r]*\r?\n")) ;the input line is not finished + (looking-at ".*\n")) ;the input line is not finished (save-excursion (if (looking-at - ":\\([^ ]+\\) +\\([0-5][0-9][0-9]\\) +\\([^ ]+\\) +\\([^\r]*\\)\r?\n") + ":\\([^ ]+\\) +\\([0-5][0-9][0-9]\\) +\\([^ ]+\\) +\\(.*\\)\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]*\\)\r?\n") + (riece-chomp-string (match-string 4))) ;reply string + (if (looking-at "\\(:\\([^ ]+\\) +\\)?\\([^ ]+\\) +\\(.*\\)\n") (riece-handle-message (match-string 2) ;optional prefix (match-string 3) ;command - (match-string 4)) ;params & trailing + (riece-chomp-string (match-string 4))) ;params & trailing (if riece-debug (message "Weird message from server: %s" (buffer-substring (point) (progn -- 1.7.10.4