Fixed.
authorueno <ueno>
Thu, 1 Jun 2006 03:30:40 +0000 (03:30 +0000)
committerueno <ueno>
Thu, 1 Jun 2006 03:30:40 +0000 (03:30 +0000)
lisp/riece-300.el

index 160f54a..deed723 100644 (file)
             (entry (riece-identity-assoc channel riece-353-message-alist t)))
        (if entry
            (setcdr entry
-                   (concat (cdr entry) " "
-                           (substring string (match-end 0))))
+                   (concat (cdr entry)
+                           (substring string (match-end 0)) " "))
          (setq riece-353-message-alist
-               (cons (cons channel (substring string (match-end 0)))
+               (cons (cons channel
+                           (concat (substring string (match-end 0)) " "))
                      riece-353-message-alist))))))
 
 (defun riece-handle-322-message (prefix number name decoded)