* riece-filter.el (riece-chomp-string): New function.
authorueno <ueno>
Sat, 5 Feb 2005 12:53:10 +0000 (12:53 +0000)
committerueno <ueno>
Sat, 5 Feb 2005 12:53:10 +0000 (12:53 +0000)
(riece-filter): Use it.

lisp/ChangeLog
lisp/riece-filter.el

index 7765ebc..34e7807 100644 (file)
@@ -1,5 +1,10 @@
 2005-02-05  Daiki Ueno  <ueno@unixuser.org>
 
+       * riece-filter.el (riece-chomp-string): New function.
+       (riece-filter): Use it.
+
+2005-02-05  Daiki Ueno  <ueno@unixuser.org>
+
        * Riece: Version 1.0.7 released.
        * riece-version.el (riece-version-number): Bump up to 1.0.7.
 
index b2ae24f..dc72e92 100644 (file)
       (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))
                 (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