(riece-irc-open-server): Fixed typo in the commit on 2008-04-04.
authorDaiki Ueno <ueno@unixuser.org>
Tue, 15 Apr 2008 10:03:49 +0000 (10:03 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Tue, 15 Apr 2008 10:03:49 +0000 (10:03 +0000)
lisp/ChangeLog
lisp/riece-irc.el

index b65ab99..44f630c 100644 (file)
@@ -3,6 +3,7 @@
        * riece-irc.el (riece-irc-open-server): Send NICK before USER,
        following the recommendation in "3.1 Connection Registration" of
        RFC2812.
        * riece-irc.el (riece-irc-open-server): Send NICK before USER,
        following the recommendation in "3.1 Connection Registration" of
        RFC2812.
+       (riece-irc-open-server): Fixed typo in the commit on 2008-04-04.
 
 2008-04-04  春日 玄 KASUGA Toru  <kasuga.toru@jp.fujitsu.com>
 
 
 2008-04-04  春日 玄 KASUGA Toru  <kasuga.toru@jp.fujitsu.com>
 
index ce0c912..b79dea1 100644 (file)
                                   (format "USER %s * * :%s\r\n"
                                           (or username
                                               (user-real-login-name))
                                   (format "USER %s * * :%s\r\n"
                                           (or username
                                               (user-real-login-name))
-                                          (or (encode-coding-string realname
-                                                                    coding)
-                                              "No information given")))
+                                          (encode-coding-string
+                                           (or realname
+                                               "No information given")
+                                           coding)))
        (with-current-buffer (process-buffer process)
          (setq riece-last-nickname riece-real-nickname
                riece-nick-accepted 'sent
        (with-current-buffer (process-buffer process)
          (setq riece-last-nickname riece-real-nickname
                riece-nick-accepted 'sent