* riece-display.el (riece-update-long-channel-indicator): Change
authorTAKAHASHI Kaoru <kaoru@kaisei.org>
Fri, 18 Jun 2004 05:06:21 +0000 (05:06 +0000)
committerTAKAHASHI Kaoru <kaoru@kaisei.org>
Fri, 18 Jun 2004 05:06:21 +0000 (05:06 +0000)
order to channel, mode, topic.

* riece-message.el (riece-message-make-open-bracket): Come in
first notice message.

lisp/ChangeLog
lisp/riece-display.el
lisp/riece-message.el

index dcf8bd9..4b1ee5b 100644 (file)
@@ -1,3 +1,12 @@
+2004-06-18  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * riece-display.el (riece-update-long-channel-indicator): Change
+       order to channel, mode, topic.
+
+       * riece-message.el (riece-message-make-open-bracket): Come in
+       first notice message.
+       (riece-message-make-close-bracket): Ditto.
+
 2004-06-16  Daiki Ueno  <ueno@unixuser.org>
 
        * riece-commands.el (riece-command-end-of-buffer): New command.
 2004-06-16  Daiki Ueno  <ueno@unixuser.org>
 
        * riece-commands.el (riece-command-end-of-buffer): New command.
index 304b4bd..9c36ec4 100644 (file)
@@ -280,9 +280,9 @@ Local to the buffer in `riece-buffer-list'.")
   (setq riece-long-channel-indicator
        (if riece-current-channel
            (if (riece-channel-p (riece-identity-prefix riece-current-channel))
   (setq riece-long-channel-indicator
        (if riece-current-channel
            (if (riece-channel-p (riece-identity-prefix riece-current-channel))
-               (riece-concat-channel-modes
+               (riece-concat-channel-topic
                 riece-current-channel
                 riece-current-channel
-                (riece-concat-channel-topic
+                (riece-concat-channel-modes
                  riece-current-channel
                  (riece-format-identity riece-current-channel)))
              (riece-format-identity riece-current-channel))
                  riece-current-channel
                  (riece-format-identity riece-current-channel)))
              (riece-format-identity riece-current-channel))
index ea6285f..f9d3740 100644 (file)
 
 (defun riece-message-make-open-bracket (message)
   "Make `open-bracket' string for MESSAGE."
 
 (defun riece-message-make-open-bracket (message)
   "Make `open-bracket' string for MESSAGE."
-  (if (riece-message-own-p message)
-      ">"
-    (if (eq (riece-message-type message) 'notice)
-       "{"
+  (if (eq (riece-message-type message) 'notice)
+      "{"
+    (if (riece-message-own-p message)
+       ">"
       (if (riece-message-private-p message)
          "="
        (if (riece-message-external-p message)
       (if (riece-message-private-p message)
          "="
        (if (riece-message-external-p message)
 
 (defun riece-message-make-close-bracket (message)
   "Make `close-bracket' string for MESSAGE."
 
 (defun riece-message-make-close-bracket (message)
   "Make `close-bracket' string for MESSAGE."
-  (if (riece-message-own-p message)
-      "<"
-    (if (eq (riece-message-type message) 'notice)
-       "}"
+  (if (eq (riece-message-type message) 'notice)
+      "}"
+    (if (riece-message-own-p message)
+       "<"
       (if (riece-message-private-p message)
          "="
        (if (riece-message-external-p message)
       (if (riece-message-private-p message)
          "="
        (if (riece-message-external-p message)