* erc-stamp.el (erc-echo-timestamp):
[bpt/emacs.git] / lisp / net / rcirc.el
index f2eff37..a1a0e0c 100644 (file)
@@ -1,6 +1,6 @@
 ;;; rcirc.el --- default, simple IRC client.
 
-;; Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+;; Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
 
 ;; Author: Ryan Yeske
 ;; URL: http://www.nongnu.org/rcirc
 
 ;; This file is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 2, or (at your option)
+;; the Free Software Foundation; either version 3, or (at your option)
 ;; any later version.
 
 ;; This file is distributed in the hope that it will be useful,
 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
@@ -40,6 +40,8 @@
 ;; Open a new irc connection with:
 ;; M-x irc RET
 
+;;; Todo:
+
 ;;; Code:
 
 (require 'ring)
   "Simple IRC client."
   :version "22.1"
   :prefix "rcirc-"
+  :link '(custom-manual "(rcirc)")
   :group 'applications)
 
-(defcustom rcirc-server "irc.freenode.net"
-  "The default server to connect to."
-  :type 'string
+(defcustom rcirc-server-alist
+  '(("irc.freenode.net" :channels ("#rcirc")))
+  "An alist of IRC connections to establish when running `rcirc'.
+Each element looks like (SERVER-NAME PARAMETERS).
+
+SERVER-NAME is a string describing the server to connect
+to.
+
+The optional PARAMETERS come in pairs PARAMETER VALUE.
+
+The following parameters are recognized:
+
+`:nick'
+
+VALUE must be a string.  If absent, `rcirc-default-nick' is used
+for this connection.
+
+`:port'
+
+VALUE must be a number or string.  If absent,
+`rcirc-default-port' is used.
+
+`:user-name'
+
+VALUE must be a string.  If absent, `rcirc-default-user-name' is
+used.
+
+`:full-name'
+
+VALUE must be a string.  If absent, `rcirc-default-full-name' is
+used.
+
+`:channels'
+
+VALUE must be a list of strings describing which channels to join
+when connecting to this server.  If absent, no channels will be
+connected to automatically."
+  :type '(alist :key-type string
+               :value-type (plist :options ((:nick string)
+                                            (:port integer)
+                                            (:user-name string)
+                                            (:full-name string)
+                                            (:channels (repeat string)))))
   :group 'rcirc)
 
-(defcustom rcirc-port 6667
+(defcustom rcirc-default-port 6667
   "The default port to connect to."
   :type 'integer
   :group 'rcirc)
 
-(defcustom rcirc-nick (user-login-name)
+(defcustom rcirc-default-nick (user-login-name)
   "Your nick."
   :type 'string
   :group 'rcirc)
 
-(defcustom rcirc-user-name (user-login-name)
+(defcustom rcirc-default-user-name (user-login-name)
   "Your user name sent to the server when connecting."
   :type 'string
   :group 'rcirc)
 
-(defcustom rcirc-user-full-name (if (string= (user-full-name) "")
-                                rcirc-user-name
-                              (user-full-name))
+(defcustom rcirc-default-full-name (if (string= (user-full-name) "")
+                                      rcirc-default-user-name
+                                    (user-full-name))
   "The full name sent to the server when connecting."
   :type 'string
   :group 'rcirc)
 
-(defcustom rcirc-startup-channels-alist '(("^irc.freenode.net$" "#emacs"))
-  "Alist of channels to join at startup.
-Each element looks like (SERVER-REGEXP . CHANNEL-LIST)."
-  :type '(alist :key-type string :value-type (repeat string))
-  :group 'rcirc)
-
 (defcustom rcirc-fill-flag t
   "*Non-nil means line-wrap messages printed in channel buffers."
   :type 'boolean
@@ -111,6 +148,15 @@ underneath each nick."
   "If non-nil, ignore activity in this buffer.")
 (make-variable-buffer-local 'rcirc-ignore-buffer-activity-flag)
 
+(defvar rcirc-low-priority-flag nil
+  "If non-nil, activity in this buffer is considered low priority.")
+(make-variable-buffer-local 'rcirc-low-priority-flag)
+
+(defvar rcirc-omit-mode nil
+  "Non-nil if Rcirc-Omit mode is enabled.
+Use the command `rcirc-omit-mode' to change this variable.")
+(make-variable-buffer-local 'rcirc-omit-mode)
+
 (defcustom rcirc-time-format "%H:%M "
   "*Describes how timestamps are printed.
 Used as the first arg to `format-time-string'."
@@ -130,11 +176,17 @@ Used as the first arg to `format-time-string'."
 (defcustom rcirc-buffer-maximum-lines nil
   "*The maximum size in lines for rcirc buffers.
 Channel buffers are truncated from the top to be no greater than this
-number.         If zero or nil, no truncating is done."
+number.  If zero or nil, no truncating is done."
   :type '(choice (const :tag "No truncation" nil)
                 (integer :tag "Number of lines"))
   :group 'rcirc)
 
+(defcustom rcirc-scroll-show-maximum-output t
+  "*If non-nil, scroll buffer to keep the point at the bottom of
+the window."
+  :type 'boolean
+  :group 'rcirc)
+
 (defcustom rcirc-authinfo nil
   "List of authentication passwords.
 Each element of the list is a list with a SERVER-REGEXP string
@@ -189,24 +241,35 @@ use either M-x customize or also call `rcirc-update-prompt'."
   :initialize 'custom-initialize-default
   :group 'rcirc)
 
+(defcustom rcirc-keywords nil
+  "List of keywords to highlight in message text."
+  :type '(repeat string)
+  :group 'rcirc)
+
 (defcustom rcirc-ignore-list ()
   "List of ignored nicks.
 Use /ignore to list them, use /ignore NICK to add or remove a nick."
   :type '(repeat string)
   :group 'rcirc)
 
-(defcustom rcirc-nick-abbrevs nil
-  "List of short replacements for printing nicks."
-  :type '(alist :key-type (string :tag "Nick")
-               :value-type (string :tag "Abbrev"))
-  :group 'rcirc)
-
 (defvar rcirc-ignore-list-automatic ()
   "List of ignored nicks added to `rcirc-ignore-list' because of renaming.
 When an ignored person renames, their nick is added to both lists.
 Nicks will be removed from the automatic list on follow-up renamings or
 parts.")
 
+(defcustom rcirc-bright-nicks nil
+  "List of nicks to be emphasized.
+See `rcirc-bright-nick' face."
+  :type '(repeat string)
+  :group 'rcirc)
+
+(defcustom rcirc-dim-nicks nil
+  "List of nicks to be deemphasized.
+See `rcirc-dim-nick' face."
+  :type '(repeat string)
+  :group 'rcirc)
+
 (defcustom rcirc-print-hooks nil
   "Hook run after text is printed.
 Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
@@ -218,11 +281,51 @@ Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
   :type 'boolean
   :group 'rcirc)
 
+(defcustom rcirc-decode-coding-system 'utf-8
+  "Coding system used to decode incoming irc messages."
+  :type 'coding-system
+  :group 'rcirc)
+
+(defcustom rcirc-encode-coding-system 'utf-8
+  "Coding system used to encode outgoing irc messages."
+  :type 'coding-system
+  :group 'rcirc)
+
+(defcustom rcirc-coding-system-alist nil
+  "Alist to decide a coding system to use for a channel I/O operation.
+The format is ((PATTERN . VAL) ...).
+PATTERN is either a string or a cons of strings.
+If PATTERN is a string, it is used to match a target.
+If PATTERN is a cons of strings, the car part is used to match a
+target, and the cdr part is used to match a server.
+VAL is either a coding system or a cons of coding systems.
+If VAL is a coding system, it is used for both decoding and encoding
+messages.
+If VAL is a cons of coding systems, the car part is used for decoding,
+and the cdr part is used for encoding."
+  :type '(alist :key-type (choice (string :tag "Channel Regexp")
+                                         (cons (string :tag "Channel Regexp")
+                                               (string :tag "Server Regexp")))
+               :value-type (choice coding-system
+                                   (cons (coding-system :tag "Decode")
+                                         (coding-system :tag "Encode"))))
+  :group 'rcirc)
+
+(defcustom rcirc-multiline-major-mode 'fundamental-mode
+  "Major-mode function to use in multiline edit buffers."
+  :type 'function
+  :group 'rcirc)
+
+(defvar rcirc-nick nil)
+
 (defvar rcirc-prompt-start-marker nil)
 (defvar rcirc-prompt-end-marker nil)
 
 (defvar rcirc-nick-table nil)
 
+(defvar rcirc-recent-quit-alist nil
+  "Alist of nicks that have recently quit or parted the channel.")
+
 (defvar rcirc-nick-syntax-table
   (let ((table (make-syntax-table text-mode-syntax-table)))
     (mapc (lambda (c) (modify-syntax-entry c "w" table))
@@ -235,57 +338,93 @@ Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
 (defvar rcirc-buffer-alist nil)
 
 (defvar rcirc-activity nil
-  "List of channels with unviewed activity.")
+  "List of buffers with unviewed activity.")
 
 (defvar rcirc-activity-string ""
   "String displayed in modeline representing `rcirc-activity'.")
 (put 'rcirc-activity-string 'risky-local-variable t)
 
-(defvar rcirc-process nil
-  "The server process associated with this buffer.")
+(defvar rcirc-server-buffer nil
+  "The server buffer associated with this channel buffer.")
 
 (defvar rcirc-target nil
   "The channel or user associated with this buffer.")
 
 (defvar rcirc-urls nil
   "List of urls seen in the current buffer.")
+(put 'rcirc-urls 'permanent-local t)
 
-(defvar rcirc-keepalive-seconds 60
-  "Number of seconds between keepalive pings.")
+(defvar rcirc-timeout-seconds 600
+  "Kill connection after this many seconds if there is no activity.")
 
 (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))
 \f
 (defvar rcirc-startup-channels nil)
+
 ;;;###autoload
 (defun rcirc (arg)
-  "Connect to IRC.
-If ARG is non-nil, prompt for a server to connect to."
+  "Connect to all servers in `rcirc-server-alist'.
+
+Do not connect to a server if it is already connected.
+
+If ARG is non-nil, instead prompt for connection parameters."
   (interactive "P")
   (if arg
-      (let* ((server (read-string "IRC Server: " rcirc-server))
-            (port (read-string "IRC Port: " (number-to-string rcirc-port)))
-            (nick (read-string "IRC Nick: " rcirc-nick))
+      (let* ((server (completing-read "IRC Server: "
+                                     rcirc-server-alist
+                                     nil nil
+                                     (caar rcirc-server-alist)))
+            (server-plist (cdr (assoc-string server rcirc-server-alist)))
+            (port (read-string "IRC Port: "
+                               (number-to-string
+                                (or (plist-get server-plist 'port)
+                                    rcirc-default-port))))
+            (nick (read-string "IRC Nick: "
+                               (or (plist-get server-plist 'nick)
+                                   rcirc-default-nick)))
             (channels (split-string
                        (read-string "IRC Channels: "
                                     (mapconcat 'identity
-                                               (rcirc-startup-channels server)
+                                               (plist-get server-plist
+                                                          'channels)
                                                " "))
                        "[, ]+" t)))
-       (rcirc-connect server port nick rcirc-user-name rcirc-user-full-name
+       (rcirc-connect server port nick rcirc-default-user-name
+                      rcirc-default-full-name
                       channels))
-    ;; make new connection using defaults unless already connected to
-    ;; the default rcirc-server
-    (let ((default-server (default-value 'rcirc-server))
-         connected)
-      (dolist (p (rcirc-process-list))
-       (when (string= default-server (process-name p))
-         (setq connected p)))
-      (if (not connected)
-         (rcirc-connect rcirc-server rcirc-port rcirc-nick
-                        rcirc-user-name rcirc-user-full-name
-                        (rcirc-startup-channels rcirc-server))
-       (switch-to-buffer (process-buffer connected))
-       (message "Connected to %s" rcirc-server)))))
+    ;; connect to servers in `rcirc-server-alist'
+    (let (connected-servers)
+      (dolist (c rcirc-server-alist)
+       (let ((server (car c))
+             (nick (or (plist-get (cdr c) :nick) rcirc-default-nick))
+             (port (or (plist-get (cdr c) :port) rcirc-default-port))
+             (user-name (or (plist-get (cdr c) :user-name)
+                            rcirc-default-user-name))
+             (full-name (or (plist-get (cdr c) :full-name)
+                            rcirc-default-full-name))
+             (channels (plist-get (cdr c) :channels)))
+         (when server
+           (let (connected)
+             (dolist (p (rcirc-process-list))
+               (when (string= server (process-name p))
+                 (setq connected p)))
+             (if (not connected)
+                 (condition-case e
+                     (rcirc-connect server port nick user-name
+                                    full-name channels)
+                   (quit (message "Quit connecting to %s" server)))
+               (with-current-buffer (process-buffer connected)
+                 (setq connected-servers
+                       (cons (process-contact (get-buffer-process
+                                               (current-buffer)) :host)
+                             connected-servers))))))))
+      (when connected-servers
+       (message "Already connected to %s"
+                (if (cdr connected-servers)
+                    (concat (mapconcat 'identity (butlast connected-servers) ", ")
+                            ", and "
+                            (car (last connected-servers)))
+                  (car connected-servers)))))))
 
 ;;;###autoload
 (defalias 'irc 'rcirc)
@@ -295,10 +434,16 @@ If ARG is non-nil, prompt for a server to connect to."
 (defvar rcirc-topic nil)
 (defvar rcirc-keepalive-timer nil)
 (defvar rcirc-last-server-message-time nil)
-(defun rcirc-connect (&optional server port nick user-name full-name startup-channels)
-  (add-hook 'window-configuration-change-hook
-           'rcirc-window-configuration-change)
+(defvar rcirc-server nil)              ; server provided by server
+(defvar rcirc-server-name nil)         ; server name given by 001 response
+(defvar rcirc-timeout-timer nil)
+(defvar rcirc-user-disconnect nil)
+(defvar rcirc-connecting nil)
+(defvar rcirc-process nil)
 
+;;;###autoload
+(defun rcirc-connect (server &optional port nick user-name full-name
+                            startup-channels)
   (save-excursion
     (message "Connecting to %s..." server)
     (let* ((inhibit-eol-conversion)
@@ -306,26 +451,29 @@ If ARG is non-nil, prompt for a server to connect to."
                            (if (stringp port)
                                (string-to-number port)
                              port)
-                         rcirc-port))
-          (server (or server rcirc-server))
-          (nick (or nick rcirc-nick))
-          (user-name (or user-name rcirc-user-name))
-          (full-name (or full-name rcirc-user-full-name))
-          (startup-channels (or startup-channels (rcirc-startup-channels server)))
-           (process (open-network-stream server nil server port-number)))
+                         rcirc-default-port))
+          (nick (or nick rcirc-default-nick))
+          (user-name (or user-name rcirc-default-user-name))
+          (full-name (or full-name rcirc-default-full-name))
+          (startup-channels startup-channels)
+           (process (make-network-process :name server :host server :service port-number)))
       ;; set up process
       (set-process-coding-system process 'raw-text 'raw-text)
-      (set-process-filter process 'rcirc-filter)
       (switch-to-buffer (rcirc-generate-new-buffer-name process nil))
       (set-process-buffer process (current-buffer))
-      (set-process-sentinel process 'rcirc-sentinel)
       (rcirc-mode process nil)
+      (set-process-sentinel process 'rcirc-sentinel)
+      (set-process-filter process 'rcirc-filter)
+      (make-local-variable 'rcirc-process)
+      (setq rcirc-process process)
+      (make-local-variable 'rcirc-server)
+      (setq rcirc-server server)
+      (make-local-variable 'rcirc-server-name)
+      (setq rcirc-server-name server)  ; update when we get 001 response
       (make-local-variable 'rcirc-buffer-alist)
       (setq rcirc-buffer-alist nil)
       (make-local-variable 'rcirc-nick-table)
       (setq rcirc-nick-table (make-hash-table :test 'equal))
-      (make-local-variable 'rcirc-server)
-      (setq rcirc-server server)
       (make-local-variable 'rcirc-nick)
       (setq rcirc-nick nick)
       (make-local-variable 'rcirc-process-output)
@@ -334,6 +482,14 @@ If ARG is non-nil, prompt for a server to connect to."
       (setq rcirc-startup-channels startup-channels)
       (make-local-variable 'rcirc-last-server-message-time)
       (setq rcirc-last-server-message-time (current-time))
+      (make-local-variable 'rcirc-timeout-timer)
+      (setq rcirc-timeout-timer nil)
+      (make-local-variable 'rcirc-user-disconnect)
+      (setq rcirc-user-disconnect nil)
+      (make-local-variable 'rcirc-connecting)
+      (setq rcirc-connecting t)
+
+      (add-hook 'auto-save-hook 'rcirc-log-write)
 
       ;; identify
       (rcirc-send-string process (concat "NICK " nick))
@@ -343,8 +499,8 @@ If ARG is non-nil, prompt for a server to connect to."
 
       ;; setup ping timer if necessary
       (unless rcirc-keepalive-timer
-        (setq rcirc-keepalive-timer
-              (run-at-time 0 rcirc-keepalive-seconds 'rcirc-keepalive)))
+       (setq rcirc-keepalive-timer
+             (run-at-time 0 (/ rcirc-timeout-seconds 2) 'rcirc-keepalive)))
 
       (message "Connecting to %s...done" server)
 
@@ -356,21 +512,34 @@ If ARG is non-nil, prompt for a server to connect to."
   `(with-current-buffer (process-buffer ,process)
      ,@body))
 
+(defmacro with-rcirc-server-buffer (&rest body)
+  (declare (indent 0) (debug t))
+  `(with-current-buffer rcirc-server-buffer
+     ,@body))
+
 (defun rcirc-keepalive ()
   "Send keep alive pings to active rcirc processes.
 Kill processes that have not received a server message since the
 last ping."
   (if (rcirc-process-list)
       (mapc (lambda (process)
-              (with-rcirc-process-buffer process
-               (if (> (cadr (time-since rcirc-last-server-message-time))
-                      rcirc-keepalive-seconds)
-                   (kill-process process)
-                 (rcirc-send-string process (concat "PING " rcirc-server)))))
+             (with-rcirc-process-buffer process
+               (when (not rcirc-connecting)
+                 (rcirc-send-string process
+                                    (format "PRIVMSG %s :\C-aKEEPALIVE %f\C-a"
+                                            rcirc-nick
+                                            (time-to-seconds
+                                             (current-time)))))))
             (rcirc-process-list))
+    ;; no processes, clean up timer
     (cancel-timer rcirc-keepalive-timer)
     (setq rcirc-keepalive-timer nil)))
 
+(defun rcirc-handler-ctcp-KEEPALIVE (process target sender message)
+  (with-rcirc-process-buffer process
+    (setq header-line-format (format "%f" (- (time-to-seconds (current-time))
+                                            (string-to-number message))))))
+
 (defvar rcirc-debug-buffer " *rcirc debug*")
 (defvar rcirc-debug-flag nil
   "If non-nil, write information to `rcirc-debug-buffer'.")
@@ -380,14 +549,13 @@ Debug text is written to `rcirc-debug-buffer' if `rcirc-debug-flag'
 is non-nil."
   (when rcirc-debug-flag
     (save-excursion
-      (save-window-excursion
-        (set-buffer (get-buffer-create rcirc-debug-buffer))
-        (goto-char (point-max))
-        (insert (concat
-                 "["
-                 (format-time-string "%Y-%m-%dT%T ") (process-name process)
-                 "] "
-                 text))))))
+      (set-buffer (get-buffer-create rcirc-debug-buffer))
+      (goto-char (point-max))
+      (insert (concat
+              "["
+              (format-time-string "%Y-%m-%dT%T ") (process-name process)
+              "] "
+              text)))))
 
 (defvar rcirc-sentinel-hooks nil
   "Hook functions called when the process sentinel is called.
@@ -404,18 +572,22 @@ Functions are called with PROCESS and SENTINEL arguments.")
                       (format "%s: %s (%S)"
                               (process-name process)
                               sentinel
-                              (process-status process)) t)
-         ;; remove the prompt from buffers
-         (let ((inhibit-read-only t))
-           (delete-region rcirc-prompt-start-marker
-                          rcirc-prompt-end-marker)))))
-    (run-hook-with-args 'rcirc-sentinel-hooks process sentinel)))
+                              (process-status process)) (not rcirc-target))
+         (rcirc-disconnect-buffer)))
+      (run-hook-with-args 'rcirc-sentinel-hooks process sentinel))))
+
+(defun rcirc-disconnect-buffer (&optional buffer)
+  (with-current-buffer (or buffer (current-buffer))
+    ;; set rcirc-target to nil for each channel so cleanup
+    ;; doesnt happen when we reconnect
+    (setq rcirc-target nil)
+    (setq mode-line-process ":disconnected")))
 
 (defun rcirc-process-list ()
   "Return a list of rcirc processes."
   (let (ps)
     (mapc (lambda (p)
-            (when (process-buffer p)
+            (when (buffer-live-p (process-buffer p))
               (with-rcirc-process-buffer p
                 (when (eq major-mode 'rcirc-mode)
                   (setq ps (cons p ps))))))
@@ -428,6 +600,7 @@ Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
 (defun rcirc-filter (process output)
   "Called when PROCESS receives OUTPUT."
   (rcirc-debug process output)
+  (rcirc-reschedule-timeout process)
   (with-rcirc-process-buffer process
     (setq rcirc-last-server-message-time (current-time))
     (setq rcirc-process-output (concat rcirc-process-output output))
@@ -438,6 +611,18 @@ Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
             (split-string rcirc-process-output "[\n\r]" t))
       (setq rcirc-process-output nil))))
 
+(defun rcirc-reschedule-timeout (process)
+  (with-rcirc-process-buffer process
+    (when (not rcirc-connecting)
+      (with-rcirc-process-buffer process
+       (when rcirc-timeout-timer (cancel-timer rcirc-timeout-timer))
+       (setq rcirc-timeout-timer (run-at-time rcirc-timeout-seconds nil
+                                              'rcirc-delete-process
+                                              process))))))
+
+(defun rcirc-delete-process (process)
+  (delete-process process))
+
 (defvar rcirc-trap-errors-flag t)
 (defun rcirc-process-server-response (process text)
   (if rcirc-trap-errors-flag
@@ -467,43 +652,59 @@ Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
                             process cmd sender args text)))
     (message "UNHANDLED: %s" text)))
 
-(defun rcirc-handler-generic (process command sender args text)
+(defvar rcirc-responses-no-activity '("305" "306")
+  "Responses that don't trigger activity in the mode-line indicator.")
+
+(defun rcirc-handler-generic (process response sender args text)
   "Generic server response handler."
-  (rcirc-print process sender command nil
-               (mapconcat 'identity (cdr args) " ") t))
+  (rcirc-print process sender response nil
+               (mapconcat 'identity (cdr args) " ")
+              (not (member response rcirc-responses-no-activity))))
 
 (defun rcirc-send-string (process string)
   "Send PROCESS a STRING plus a newline."
-  (let ((string (concat (encode-coding-string string
-                                              buffer-file-coding-system)
+  (let ((string (concat (encode-coding-string string rcirc-encode-coding-system)
                         "\n")))
-    (unless (eq (process-status rcirc-process) 'open)
+    (unless (eq (process-status process) 'open)
       (error "Network connection to %s is not open"
-             (process-name rcirc-process)))
+             (process-name process)))
     (rcirc-debug process string)
     (process-send-string process string)))
 
-(defun rcirc-server (process)
-  "Return PROCESS server, given by the 001 response."
+(defun rcirc-buffer-process (&optional buffer)
+  "Return the process associated with channel BUFFER.
+With no argument or nil as argument, use the current buffer."
+  (or (get-buffer-process (if buffer
+                             (with-current-buffer buffer
+                               rcirc-server-buffer)
+                           rcirc-server-buffer))
+      rcirc-process))
+
+(defun rcirc-server-name (process)
+  "Return PROCESS server name, given by the 001 response."
   (with-rcirc-process-buffer process
-    rcirc-server))
+    (or rcirc-server-name
+       (warn "server name for process %S unknown" process))))
 
 (defun rcirc-nick (process)
   "Return PROCESS nick."
   (with-rcirc-process-buffer process
-    rcirc-nick))
+    (or rcirc-nick rcirc-default-nick)))
 
-(defun rcirc-abbrev-nick (nick)
-  "If NICK has an entry in `rcirc-nick-abbrevs', return its abbreviation,
-otherwise return NICK."
-  (or (cdr (assoc nick rcirc-nick-abbrevs)) nick))
+(defun rcirc-buffer-nick (&optional buffer)
+  "Return the nick associated with BUFFER.
+With no argument or nil as argument, use the current buffer."
+  (with-current-buffer (or buffer (current-buffer))
+    (with-current-buffer rcirc-server-buffer
+      (or rcirc-nick rcirc-default-nick))))
 
-(defvar rcirc-max-message-length 450
+(defvar rcirc-max-message-length 420
   "Messages longer than this value will be split.")
 
-(defun rcirc-send-message (process target message &optional noticep)
+(defun rcirc-send-message (process target message &optional noticep silent)
   "Send TARGET associated with PROCESS a privmsg with text MESSAGE.
-If NOTICEP is non-nil, send a notice instead of privmsg."
+If NOTICEP is non-nil, send a notice instead of privmsg.
+If SILENT is non-nil, do not print the message in any irc buffer."
   ;; max message length is 512 including CRLF
   (let* ((response (if noticep "NOTICE" "PRIVMSG"))
          (oversize (> (length message) rcirc-max-message-length))
@@ -516,8 +717,9 @@ If NOTICEP is non-nil, send a notice instead of privmsg."
          (more (if oversize
                    (substring message rcirc-max-message-length))))
     (rcirc-get-buffer-create process target)
-    (rcirc-print process (rcirc-nick process) response target text)
     (rcirc-send-string process (concat response " " target " :" text))
+    (unless silent
+      (rcirc-print process (rcirc-nick process) response target text))
     (when more (rcirc-send-message process target more noticep))))
 
 (defvar rcirc-input-ring nil)
@@ -541,10 +743,11 @@ If NOTICEP is non-nil, send a notice instead of privmsg."
 
 (defvar rcirc-nick-completions nil)
 (defvar rcirc-nick-completion-start-offset nil)
+
 (defun rcirc-complete-nick ()
   "Cycle through nick completions from list of nicks in channel."
   (interactive)
-  (if (eq last-command 'rcirc-complete-nick)
+  (if (eq last-command this-command)
       (setq rcirc-nick-completions
             (append (cdr rcirc-nick-completions)
                     (list (car rcirc-nick-completions))))
@@ -562,24 +765,28 @@ If NOTICEP is non-nil, send a notice instead of privmsg."
                 rcirc-nick-completion-start-offset)
              (point))
             (mapcar (lambda (x) (cons x nil))
-                    (rcirc-channel-nicks rcirc-process
-                                         (rcirc-buffer-target)))))))
+                    (rcirc-channel-nicks (rcirc-buffer-process)
+                                         rcirc-target))))))
   (let ((completion (car rcirc-nick-completions)))
     (when completion
       (delete-region (+ rcirc-prompt-end-marker
-                        rcirc-nick-completion-start-offset)
-                     (point))
+                       rcirc-nick-completion-start-offset)
+                    (point))
       (insert (concat completion
                       (if (= (+ rcirc-prompt-end-marker
                                 rcirc-nick-completion-start-offset)
                              rcirc-prompt-end-marker)
                           ": "))))))
 
-(defun rcirc-buffer-target (&optional buffer)
-  "Return the name of target for BUFFER.
-If buffer is nil, return the target of the current buffer."
-  (with-current-buffer (or buffer (current-buffer))
-    rcirc-target))
+(defun set-rcirc-decode-coding-system (coding-system)
+  "Set the decode coding system used in this channel."
+  (interactive "zCoding system for incoming messages: ")
+  (setq rcirc-decode-coding-system coding-system))
+
+(defun set-rcirc-encode-coding-system (coding-system)
+  "Set the encode coding system used in this channel."
+  (interactive "zCoding system for outgoing messages: ")
+  (setq rcirc-encode-coding-system coding-system))
 
 (defvar rcirc-mode-map (make-sparse-keymap)
   "Keymap for rcirc mode.")
@@ -592,11 +799,12 @@ If buffer is nil, return the target of the current buffer."
 (define-key rcirc-mode-map (kbd "C-c C-c") 'rcirc-edit-multiline)
 (define-key rcirc-mode-map (kbd "C-c C-j") 'rcirc-cmd-join)
 (define-key rcirc-mode-map (kbd "C-c C-k") 'rcirc-cmd-kick)
-(define-key rcirc-mode-map (kbd "C-c C-l") 'rcirc-cmd-list)
+(define-key rcirc-mode-map (kbd "C-c C-l") 'rcirc-toggle-low-priority)
 (define-key rcirc-mode-map (kbd "C-c C-d") 'rcirc-cmd-mode)
 (define-key rcirc-mode-map (kbd "C-c C-m") 'rcirc-cmd-msg)
 (define-key rcirc-mode-map (kbd "C-c C-r") 'rcirc-cmd-nick) ; rename
-(define-key rcirc-mode-map (kbd "C-c C-o") 'rcirc-cmd-oper)
+(define-key rcirc-mode-map (kbd "C-c C-o") 'rcirc-omit-mode)
+(define-key rcirc-mode-map (kbd "M-o") 'rcirc-omit-mode)
 (define-key rcirc-mode-map (kbd "C-c C-p") 'rcirc-cmd-part)
 (define-key rcirc-mode-map (kbd "C-c C-q") 'rcirc-cmd-query)
 (define-key rcirc-mode-map (kbd "C-c C-t") 'rcirc-cmd-topic)
@@ -620,6 +828,16 @@ If buffer is nil, return the target of the current buffer."
 (defvar rcirc-mode-hook nil
   "Hook run when setting up rcirc buffer.")
 
+(defvar rcirc-last-post-time nil)
+
+(defvar rcirc-log-alist nil
+  "Alist of lines to log to disk when `rcirc-log-flag' is non-nil.
+Each element looks like (FILENAME . TEXT).")
+
+(defvar rcirc-current-line 0
+  "The current number of responses printed in this channel.
+This number is independent of the number of lines in the buffer.")
+
 (defun rcirc-mode (process target)
   "Major mode for IRC channel buffers.
 
@@ -628,22 +846,48 @@ If buffer is nil, return the target of the current buffer."
   (use-local-map rcirc-mode-map)
   (setq mode-name "rcirc")
   (setq major-mode 'rcirc-mode)
+  (setq mode-line-process nil)
 
   (make-local-variable 'rcirc-input-ring)
   (setq rcirc-input-ring (make-ring rcirc-input-ring-size))
-  (make-local-variable 'rcirc-process)
-  (setq rcirc-process process)
+  (make-local-variable 'rcirc-server-buffer)
+  (setq rcirc-server-buffer (process-buffer process))
   (make-local-variable 'rcirc-target)
   (setq rcirc-target target)
   (make-local-variable 'rcirc-topic)
   (setq rcirc-topic nil)
+  (make-local-variable 'rcirc-last-post-time)
+  (setq rcirc-last-post-time (current-time))
+  (make-local-variable 'fill-paragraph-function)
+  (setq fill-paragraph-function 'rcirc-fill-paragraph)
+  (make-local-variable 'rcirc-recent-quit-alist)
+  (setq rcirc-recent-quit-alist nil)
+  (make-local-variable 'rcirc-current-line)
+  (setq rcirc-current-line 0)
 
   (make-local-variable 'rcirc-short-buffer-name)
   (setq rcirc-short-buffer-name nil)
   (make-local-variable 'rcirc-urls)
-  (setq rcirc-urls nil)
   (setq use-hard-newlines t)
 
+  ;; setup for omitting responses
+  (setq buffer-invisibility-spec '())
+  (setq buffer-display-table (make-display-table))
+  (set-display-table-slot buffer-display-table 4
+                         (let ((glyph (make-glyph-code 
+                                       ?. 'font-lock-keyword-face)))
+                           (make-vector 3 glyph)))
+
+  (make-local-variable 'rcirc-decode-coding-system)
+  (make-local-variable 'rcirc-encode-coding-system)
+  (dolist (i rcirc-coding-system-alist)
+    (let ((chan (if (consp (car i)) (caar i) (car i)))
+         (serv (if (consp (car i)) (cdar i) "")))
+      (when (and (string-match chan (or target ""))
+                (string-match serv (rcirc-server-name process)))
+       (setq rcirc-decode-coding-system (if (consp (cdr i)) (cadr i) (cdr i))
+             rcirc-encode-coding-system (if (consp (cdr i)) (cddr i) (cdr i))))))
+
   ;; setup the prompt and markers
   (make-local-variable 'rcirc-prompt-start-marker)
   (setq rcirc-prompt-start-marker (make-marker))
@@ -657,6 +901,11 @@ If buffer is nil, return the target of the current buffer."
   (setq overlay-arrow-position (make-marker))
   (set-marker overlay-arrow-position nil)
 
+  ;; if the user changes the major mode or kills the buffer, there is
+  ;; cleanup work to do
+  (add-hook 'change-major-mode-hook 'rcirc-change-major-mode-hook nil t)
+  (add-hook 'kill-buffer-hook 'rcirc-kill-buffer-hook nil t)
+
   ;; add to buffer list, and update buffer abbrevs
   (when target                         ; skip server buffer
     (let ((buffer (current-buffer)))
@@ -683,11 +932,9 @@ If ALL is non-nil, update prompts in all IRC buffers."
          (prompt (or rcirc-prompt "")))
       (mapc (lambda (rep)
              (setq prompt
-                   (replace-regexp-in-string (car rep) (regexp-quote (cdr rep)) prompt)))
-           (list (cons "%n" (with-rcirc-process-buffer rcirc-process
-                              rcirc-nick))
-                 (cons "%s" (with-rcirc-process-buffer rcirc-process
-                              rcirc-server))
+                   (replace-regexp-in-string (car rep) (cdr rep) prompt)))
+           (list (cons "%n" (rcirc-buffer-nick))
+                 (cons "%s" (with-rcirc-server-buffer rcirc-server-name))
                  (cons "%t" (or rcirc-target ""))))
       (save-excursion
        (delete-region rcirc-prompt-start-marker rcirc-prompt-end-marker)
@@ -721,33 +968,37 @@ If ALL is non-nil, update prompts in all IRC buffers."
 (defun rcirc-kill-buffer-hook ()
   "Part the channel when killing an rcirc buffer."
   (when (eq major-mode 'rcirc-mode)
-    (rcirc-kill-buffer-hook-1)))
-(defun rcirc-kill-buffer-hook-1 ()
+    (rcirc-clean-up-buffer "Killed buffer")))
+
+(defun rcirc-change-major-mode-hook ()
+  "Part the channel when changing the major-mode."
+  (rcirc-clean-up-buffer "Changed major mode"))
+
+(defun rcirc-clean-up-buffer (reason)
   (let ((buffer (current-buffer)))
     (rcirc-clear-activity buffer)
-    (when (and rcirc-process
-              (eq (process-status rcirc-process) 'open))
-      (with-rcirc-process-buffer rcirc-process
-       (setq rcirc-buffer-alist
-             (rassq-delete-all buffer rcirc-buffer-alist)))
+    (when (and (rcirc-buffer-process)
+              (eq (process-status (rcirc-buffer-process)) 'open))
+      (with-rcirc-server-buffer
+       (setq rcirc-buffer-alist
+            (rassq-delete-all buffer rcirc-buffer-alist)))
       (rcirc-update-short-buffer-names)
       (if (rcirc-channel-p rcirc-target)
-         (rcirc-send-string rcirc-process
-                            (concat "PART " rcirc-target
-                                    " :Killed buffer"))
+         (rcirc-send-string (rcirc-buffer-process)
+                            (concat "PART " rcirc-target " :" reason))
        (when rcirc-target
-         (rcirc-remove-nick-channel rcirc-process
-                                    (rcirc-nick rcirc-process)
-                                    rcirc-target))))))
-
-(add-hook 'kill-buffer-hook 'rcirc-kill-buffer-hook)
+         (rcirc-remove-nick-channel (rcirc-buffer-process)
+                                    (rcirc-buffer-nick)
+                                    rcirc-target))))
+    (setq rcirc-target nil)))
 
 (defun rcirc-generate-new-buffer-name (process target)
   "Return a buffer name based on PROCESS and TARGET.
 This is used for the initial name given to IRC buffers."
-  (if target
-      (concat target "@" (process-name process))
-    (concat "*" (process-name process) "*")))
+  (substring-no-properties
+   (if target
+       (concat target "@" (process-name process))
+     (concat "*" (process-name process) "*"))))
 
 (defun rcirc-get-buffer (process target &optional server)
   "Return the buffer associated with the PROCESS and TARGET.
@@ -764,19 +1015,20 @@ if there is no existing buffer for TARGET, otherwise return nil."
   "Return the buffer associated with the PROCESS and TARGET.
 Create the buffer if it doesn't exist."
   (let ((buffer (rcirc-get-buffer process target)))
-    (if buffer
+    (if (and buffer (buffer-live-p buffer))
        (with-current-buffer buffer
          (when (not rcirc-target)
            (setq rcirc-target target))
          buffer)
-       ;; create the buffer
-       (with-rcirc-process-buffer process
-         (let ((new-buffer (get-buffer-create
-                            (rcirc-generate-new-buffer-name process target))))
-           (with-current-buffer new-buffer
-             (rcirc-mode process target))
-           (rcirc-put-nick-channel process (rcirc-nick process) target)
-           new-buffer)))))
+      ;; create the buffer
+      (with-rcirc-process-buffer process
+       (let ((new-buffer (get-buffer-create
+                          (rcirc-generate-new-buffer-name process target))))
+         (with-current-buffer new-buffer
+           (rcirc-mode process target)
+           (rcirc-put-nick-channel process (rcirc-nick process) target 
+                                   rcirc-current-line))
+         new-buffer)))))
 
 (defun rcirc-send-input ()
   "Send input to target associated with the current buffer."
@@ -797,22 +1049,28 @@ Create the buffer if it doesn't exist."
                   (buffer-substring-no-properties start end)))))
     ;; process input
     (goto-char (point-max))
-    (let ((target (rcirc-buffer-target))
-         (start rcirc-prompt-end-marker))
-      (when (not (equal 0 (- (point) start)))
-       ;; delete a trailing newline
-       (when (eq (point) (point-at-bol))
-         (delete-backward-char 1))
-       (let ((input (buffer-substring-no-properties
-                     rcirc-prompt-end-marker (point))))
-         (dolist (line (split-string input "\n"))
-           (rcirc-process-input-line rcirc-process target line))
-         ;; add to input-ring
-         (save-excursion
-           (ring-insert rcirc-input-ring input)
-           (setq rcirc-input-ring-index 0)))))))
+    (when (not (equal 0 (- (point) rcirc-prompt-end-marker)))
+      ;; delete a trailing newline
+      (when (eq (point) (point-at-bol))
+       (delete-backward-char 1))
+      (let ((input (buffer-substring-no-properties
+                   rcirc-prompt-end-marker (point))))
+       (dolist (line (split-string input "\n"))
+         (rcirc-process-input-line line))
+       ;; add to input-ring
+       (save-excursion
+         (ring-insert rcirc-input-ring input)
+         (setq rcirc-input-ring-index 0))))))
+
+(defun rcirc-fill-paragraph (&optional arg)
+  (interactive "p")
+  (when (> (point) rcirc-prompt-end-marker)
+    (save-restriction
+      (narrow-to-region rcirc-prompt-end-marker (point-max))
+      (let ((fill-column rcirc-max-message-length))
+       (fill-region (point-min) (point-max))))))
 
-(defun rcirc-process-input-line (process target line)
+(defun rcirc-process-input-line (line)
   (if (string-match "^/\\([^ ]+\\) ?\\(.*\\)$" line)
       (rcirc-process-command (match-string 1 line)
                             (match-string 2 line)
@@ -821,28 +1079,30 @@ Create the buffer if it doesn't exist."
 
 (defun rcirc-process-message (line)
   (if (not rcirc-target)
-      (message "Not joined")
+      (message "Not joined (no target)")
     (delete-region rcirc-prompt-end-marker (point))
-    (rcirc-send-message rcirc-process rcirc-target line)))
+    (rcirc-send-message (rcirc-buffer-process) rcirc-target line)
+    (setq rcirc-last-post-time (current-time))))
 
 (defun rcirc-process-command (command args line)
   (if (eq (aref command 0) ?/)
       ;; "//text" will send "/text" as a message
       (rcirc-process-message (substring line 1))
-    (let* ((fun (intern-soft (concat "rcirc-cmd-" command))))
+    (let ((fun (intern-soft (concat "rcirc-cmd-" command)))
+         (process (rcirc-buffer-process)))
       (newline)
       (with-current-buffer (current-buffer)
        (delete-region rcirc-prompt-end-marker (point))
        (if (string= command "me")
-           (rcirc-print rcirc-process (rcirc-nick rcirc-process)
+           (rcirc-print process (rcirc-buffer-nick)
                         "ACTION" rcirc-target args)
-         (rcirc-print rcirc-process (rcirc-nick rcirc-process)
+         (rcirc-print process (rcirc-buffer-nick)
                       "COMMAND" rcirc-target line))
        (set-marker rcirc-prompt-end-marker (point))
        (if (fboundp fun)
-           (funcall fun args rcirc-process rcirc-target)
-         (rcirc-send-string rcirc-process
-                            (concat command " " args)))))))
+           (funcall fun args process rcirc-target)
+         (rcirc-send-string process
+                            (concat command " :" args)))))))
 
 (defvar rcirc-parent-buffer nil)
 (defvar rcirc-window-configuration nil)
@@ -851,40 +1111,44 @@ Create the buffer if it doesn't exist."
   (interactive)
   (let ((pos (1+ (- (point) rcirc-prompt-end-marker))))
     (goto-char (point-max))
-    (let ((text (buffer-substring rcirc-prompt-end-marker (point)))
-          (parent (buffer-name))
-          (process rcirc-process))
+    (let ((text (buffer-substring-no-properties rcirc-prompt-end-marker 
+                                               (point)))
+          (parent (buffer-name)))
       (delete-region rcirc-prompt-end-marker (point))
       (setq rcirc-window-configuration (current-window-configuration))
       (pop-to-buffer (concat "*multiline " parent "*"))
-      (rcirc-multiline-edit-mode)
+      (funcall rcirc-multiline-major-mode)
+      (rcirc-multiline-minor-mode 1)
       (setq rcirc-parent-buffer parent)
-      (setq rcirc-process process)
       (insert text)
       (and (> pos 0) (goto-char pos))
       (message "Type C-c C-c to return text to %s, or C-c C-k to cancel" parent))))
 
-(define-derived-mode rcirc-multiline-edit-mode
-  text-mode "rcirc multi"
-  "Major mode for multiline edits
-\\{rcirc-multiline-edit-mode-map}"
+(defvar rcirc-multiline-minor-mode-map (make-sparse-keymap)
+  "Keymap for multiline mode in rcirc.")
+(define-key rcirc-multiline-minor-mode-map
+  (kbd "C-c C-c") 'rcirc-multiline-minor-submit)
+(define-key rcirc-multiline-minor-mode-map
+  (kbd "C-x C-s") 'rcirc-multiline-minor-submit)
+(define-key rcirc-multiline-minor-mode-map
+  (kbd "C-c C-k") 'rcirc-multiline-minor-cancel)
+(define-key rcirc-multiline-minor-mode-map
+  (kbd "ESC ESC ESC") 'rcirc-multiline-minor-cancel)
+
+(define-minor-mode rcirc-multiline-minor-mode
+  "Minor mode for editing multiple lines in rcirc."
+  :init-value nil
+  :lighter " rcirc-mline"
+  :keymap rcirc-multiline-minor-mode-map
+  :global nil
+  :group 'rcirc
   (make-local-variable 'rcirc-parent-buffer)
-  (make-local-variable 'rcirc-process))
-
-(define-key rcirc-multiline-edit-mode-map
-  (kbd "C-c C-c") 'rcirc-multiline-edit-submit)
-(define-key rcirc-multiline-edit-mode-map
-  (kbd "C-x C-s") 'rcirc-multiline-edit-submit)
-(define-key rcirc-multiline-edit-mode-map
-  (kbd "C-c C-k") 'rcirc-multiline-edit-cancel)
-(define-key rcirc-multiline-edit-mode-map
-  (kbd "ESC ESC ESC") 'rcirc-multiline-edit-cancel)
-
-(defun rcirc-multiline-edit-submit ()
+  (put 'rcirc-parent-buffer 'permanent-local t)
+  (setq fill-column rcirc-max-message-length))
+
+(defun rcirc-multiline-minor-submit ()
   "Send the text in buffer back to parent buffer."
   (interactive)
-  (assert (and (eq major-mode 'rcirc-multiline-edit-mode)))
-  (assert rcirc-parent-buffer)
   (untabify (point-min) (point-max))
   (let ((text (buffer-substring (point-min) (point-max)))
         (buffer (current-buffer))
@@ -896,10 +1160,9 @@ Create the buffer if it doesn't exist."
     (set-window-configuration rcirc-window-configuration)
     (goto-char (+ rcirc-prompt-end-marker (1- pos)))))
 
-(defun rcirc-multiline-edit-cancel ()
+(defun rcirc-multiline-minor-cancel ()
   "Cancel the multiline edit."
   (interactive)
-  (assert (and (eq major-mode 'rcirc-multiline-edit-mode)))
   (kill-buffer (current-buffer))
   (set-window-configuration rcirc-window-configuration))
 
@@ -911,17 +1174,17 @@ Create the buffer if it doesn't exist."
       (if (and buffer
               (with-current-buffer buffer
                 (and (eq major-mode 'rcirc-mode)
-                     (eq rcirc-process process))))
+                     (eq (rcirc-buffer-process) process))))
          buffer
        (process-buffer process)))))
 
 (defcustom rcirc-response-formats
-  '(("PRIVMSG" . "%T<%N> %m")
-    ("NOTICE"  . "%T-%N- %m")
-    ("ACTION"  . "%T[%N %m]")
-    ("COMMAND" . "%T%m")
-    ("ERROR"   . "%T%fw!!! %m")
-    (t         . "%T%fp*** %fs%n %r %m"))
+  '(("PRIVMSG" . "<%N> %m")
+    ("NOTICE"  . "-%N- %m")
+    ("ACTION"  . "[%N %m]")
+    ("COMMAND" . "%m")
+    ("ERROR"   . "%fw!!! %m")
+    (t         . "%fp*** %fs%n %r %m"))
   "An alist of formats used for printing responses.
 The format is looked up using the response-type as a key;
 if no match is found, the default entry (with a key of `t') is used.
@@ -933,99 +1196,79 @@ the of the following escape sequences replaced by the described values:
   %n        The sender's nick
   %N        The sender's nick (with face `rcirc-my-nick' or `rcirc-other-nick')
   %r        The response-type
-  %T        The timestamp (with face `rcirc-timestamp')
   %t        The target
   %fw       Following text uses the face `font-lock-warning-face'
   %fp       Following text uses the face `rcirc-server-prefix'
   %fs       Following text uses the face `rcirc-server'
   %f[FACE]  Following text uses the face FACE
   %f-       Following text uses the default face
-  %%        A literal `%' character
-"
+  %%        A literal `%' character"
   :type '(alist :key-type (choice (string :tag "Type")
                                  (const :tag "Default" t))
                :value-type string)
   :group 'rcirc)
 
+(defcustom rcirc-omit-responses
+  '("JOIN" "PART" "QUIT" "NICK")
+  "Responses which will be hidden when `rcirc-omit-mode' is enabled."
+  :type '(repeat string)
+  :group 'rcirc)
+
 (defun rcirc-format-response-string (process sender response target text)
   "Return a nicely-formatted response string, incorporating TEXT
 \(and perhaps other arguments).  The specific formatting used
 is found by looking up RESPONSE in `rcirc-response-formats'."
-  (let ((chunks
-        (split-string (or (cdr (assoc response rcirc-response-formats))
-                          (cdr (assq t rcirc-response-formats)))
-                      "%"))
-       (result "")
-       (face nil)
-       key face-key repl)
-    (when (equal (car chunks) "")
-      (pop chunks))
-    (dolist (chunk chunks)
-      (if (equal chunk "")
-         (setq key ?%)
-       (setq key (aref chunk 0))
-       (setq chunk (substring chunk 1)))
-      (setq repl
-           (cond ((eq key ?%)
-                  ;; %% -- literal % character
-                  "%")
-                 ((or (eq key ?n) (eq key ?N))
-                  ;; %n/%N -- nick
-                  (let ((nick (concat (if (string= (with-rcirc-process-buffer
-                                                       process rcirc-server)
-                                                   sender)
-                                          ""
-                                        (rcirc-abbrev-nick sender))
-                                      (and target (concat "," target)))))
-                    (rcirc-facify nick
-                                  (if (eq key ?n)
-                                      face
-                                    (if (string= sender (rcirc-nick process))
-                                        'rcirc-my-nick
-                                      'rcirc-other-nick)))))
-                 ((eq key ?T)
-                  ;; %T -- timestamp
-                  (rcirc-facify
-                   (format-time-string rcirc-time-format (current-time))
-                   'rcirc-timestamp))
-                 ((eq key ?m)
-                  ;; %m -- message text
-                  ;; We add the text property `rcirc-text' to identify this
-                  ;; as the body text.
-                  (propertize
-                   (rcirc-mangle-text process (rcirc-facify text face))
-                   'rcirc-text text))
-                 ((eq key ?t)
-                  ;; %t -- target
-                  (rcirc-facify (or rcirc-target "") face))
-                 ((eq key ?r)
-                  ;; %r -- response
-                  (rcirc-facify response face))
-                 ((eq key ?f)
-                  ;; %f -- change face
-                  (setq face-key (aref chunk 0))
-                  (setq chunk (substring chunk 1))
-                  (cond ((eq face-key ?w)
-                         ;; %fw -- warning face
-                         (setq face 'font-lock-warning-face))
-                        ((eq face-key ?p)
-                         ;; %fp -- server-prefix face
-                         (setq face 'rcirc-server-prefix))
-                        ((eq face-key ?s)
-                         ;; %fs -- warning face
-                         (setq face 'rcirc-server))
-                        ((eq face-key ?-)
-                         ;; %fs -- warning face
-                         (setq face nil))
-                        ((and (eq face-key ?\[)
-                              (string-match "^\\([^]]*\\)[]]" chunk)
-                              (facep (match-string 1 chunk)))
-                         ;; %f[...] -- named face
-                         (setq face (intern (match-string 1 chunk)))
-                         (setq chunk (substring chunk (match-end 0)))))
-                  "")))
-      (setq result (concat result repl (rcirc-facify chunk face))))
-    result))
+  (with-temp-buffer
+    (insert (or (cdr (assoc response rcirc-response-formats))
+               (cdr (assq t rcirc-response-formats))))
+    (goto-char (point-min))
+    (let ((start (point-min))
+         (sender (if (or (not sender)
+                         (string= (rcirc-server-name process) sender))
+                     ""
+                   sender))
+         face)
+      (while (re-search-forward "%\\(\\(f\\(.\\)\\)\\|\\(.\\)\\)" nil t)
+       (rcirc-add-face start (match-beginning 0) face)
+       (setq start (match-beginning 0))
+       (replace-match
+        (case (aref (match-string 1) 0)
+           (?f (setq face
+                     (case (string-to-char (match-string 3))
+                       (?w 'font-lock-warning-face)
+                       (?p 'rcirc-server-prefix)
+                       (?s 'rcirc-server)
+                       (t nil)))
+               "")
+           (?n sender)
+           (?N (let ((my-nick (rcirc-nick process)))
+                 (save-match-data
+                   (with-syntax-table rcirc-nick-syntax-table
+                     (rcirc-facify sender
+                                   (cond ((string= sender my-nick)
+                                          'rcirc-my-nick)
+                                         ((and rcirc-bright-nicks
+                                               (string-match
+                                                (regexp-opt rcirc-bright-nicks
+                                                            'words)
+                                                sender))
+                                          'rcirc-bright-nick)
+                                         ((and rcirc-dim-nicks
+                                               (string-match
+                                                (regexp-opt rcirc-dim-nicks
+                                                            'words)
+                                                sender))
+                                          'rcirc-dim-nick)
+                                         (t
+                                          'rcirc-other-nick)))))))
+           (?m (propertize text 'rcirc-text text))
+           (?r response)
+           (?t (or target ""))
+           (t (concat "UNKNOWN CODE:" (match-string 0))))
+        t t nil 0)
+       (rcirc-add-face (match-beginning 0) (match-end 0) face))
+      (rcirc-add-face start (match-beginning 0) face))
+      (buffer-substring (point-min) (point-max))))
 
 (defun rcirc-target-buffer (process sender response target text)
   "Return a buffer to print the server response."
@@ -1035,7 +1278,8 @@ is found by looking up RESPONSE in `rcirc-response-formats'."
           (rcirc-any-buffer process))
          ((not (rcirc-channel-p target))
           ;; message from another user
-          (if (string= response "PRIVMSG")
+          (if (or (string= response "PRIVMSG")
+                  (string= response "ACTION"))
               (rcirc-get-buffer-create process (if (string= sender rcirc-nick)
                                                    target
                                                  sender))
@@ -1043,16 +1287,79 @@ is found by looking up RESPONSE in `rcirc-response-formats'."
          ((or (rcirc-get-buffer process target)
               (rcirc-any-buffer process))))))
 
-(defvar rcirc-activity-type nil)
-(make-variable-buffer-local 'rcirc-activity-type)
+(defvar rcirc-activity-types nil)
+(make-variable-buffer-local 'rcirc-activity-types)
+(defvar rcirc-last-sender nil)
+(make-variable-buffer-local 'rcirc-last-sender)
+
+(defcustom rcirc-log-directory "~/.emacs.d/rcirc-log"
+  "Directory to keep IRC logfiles."
+  :type 'directory
+  :group 'rcirc)
+
+(defcustom rcirc-log-flag nil
+  "Non-nil means log IRC activity to disk.
+Logfiles are kept in `rcirc-log-directory'."
+  :type 'boolean
+  :group 'rcirc)
+
+(defcustom rcirc-omit-threshold 100
+  "Number of lines since last activity from a nick before `rcirc-omit-responses' are omitted."
+  :type 'integer
+  :group 'rcirc)
+
+(defun rcirc-last-quit-line (process nick target)
+  "Return the line number where NICK left TARGET.
+Returns nil if the information is not recorded."
+  (let ((chanbuf (rcirc-get-buffer process target)))
+    (when chanbuf
+      (cdr (assoc-string nick (with-current-buffer chanbuf
+                               rcirc-recent-quit-alist))))))
+
+(defun rcirc-last-line (process nick target)
+  "Return the line from the last activity from NICK in TARGET."
+  (let* ((chanbuf (rcirc-get-buffer process target))
+        (line (or (cdr (assoc-string target
+                                     (gethash nick (with-rcirc-server-buffer
+                                                     rcirc-nick-table)) t))
+                  (rcirc-last-quit-line process nick target))))
+    (if line
+       line
+      ;;(message "line is nil for %s in %s" nick target)
+      nil)))
+
+(defun rcirc-elapsed-lines (process nick target)
+  "Return the number of lines since activity from NICK in TARGET."
+  (let ((last-activity-line (rcirc-last-line process nick target)))
+    (when (and last-activity-line
+              (> last-activity-line 0))
+      (- rcirc-current-line last-activity-line))))
+
+(defvar rcirc-markup-text-functions
+  '(rcirc-markup-attributes
+    rcirc-markup-my-nick
+    rcirc-markup-urls
+    rcirc-markup-keywords
+    rcirc-markup-bright-nicks)
+
+  "List of functions used to manipulate text before it is printed.
+
+Each function takes two arguments, SENDER, and RESPONSE.  The
+buffer is narrowed with the text to be printed and the point is
+at the beginning of the `rcirc-text' propertized text.")
+
 (defun rcirc-print (process sender response target text &optional activity)
   "Print TEXT in the buffer associated with TARGET.
 Format based on SENDER and RESPONSE.  If ACTIVITY is non-nil,
 record activity."
-  (unless (or (member sender rcirc-ignore-list)
-             (member (with-syntax-table rcirc-nick-syntax-table
-                       (when (string-match "^\\([^/]\\w*\\)[:,]" text)
-                         (match-string 1 text))) rcirc-ignore-list))
+  (or text (setq text ""))
+  (unless (and (or (member sender rcirc-ignore-list)
+                  (member (with-syntax-table rcirc-nick-syntax-table
+                            (when (string-match "^\\([^/]\\w*\\)[:,]" text)
+                              (match-string 1 text)))
+                          rcirc-ignore-list))
+              ;; do not ignore if we sent the message
+              (not (string= sender (rcirc-nick process))))    
     (let* ((buffer (rcirc-target-buffer process sender response target text))
           (inhibit-read-only t))
       (with-current-buffer buffer
@@ -1062,11 +1369,11 @@ record activity."
 
          (unless (string= sender (rcirc-nick process))
            ;; only decode text from other senders, not ours
-           (setq text (decode-coding-string (or text "")
-                                            buffer-file-coding-system))
+           (setq text (decode-coding-string text rcirc-decode-coding-system))
            ;; mark the line with overlay arrow
            (unless (or (marker-position overlay-arrow-position)
-                       (get-buffer-window (current-buffer)))
+                       (get-buffer-window (current-buffer))
+                       (member response rcirc-omit-responses))
              (set-marker overlay-arrow-position
                          (marker-position rcirc-prompt-start-marker))))
 
@@ -1076,42 +1383,46 @@ record activity."
          (set-marker-insertion-type rcirc-prompt-start-marker t)
          (set-marker-insertion-type rcirc-prompt-end-marker t)
 
-         (let ((fmted-text
-                (rcirc-format-response-string process sender response nil
-                                              text)))
-
-           (insert fmted-text (propertize "\n" 'hard t))
-           (set-marker-insertion-type rcirc-prompt-start-marker nil)
-           (set-marker-insertion-type rcirc-prompt-end-marker nil)
-
-           (let ((text-start (make-marker)))
-             (set-marker text-start
-                         (or (next-single-property-change fill-start 
-                                                          'rcirc-text)
-                             (point-max)))
-             ;; squeeze spaces out of text before rcirc-text
-             (fill-region fill-start (1- text-start))
-
-             ;; fill the text we just inserted, maybe
-             (when (and rcirc-fill-flag
-                        (not (string= response "372"))) ;/motd
-               (let ((fill-prefix
-                      (or rcirc-fill-prefix
-                          (make-string (- text-start fill-start) ?\s)))
-                     (fill-column (cond ((eq rcirc-fill-column 'frame-width)
-                                         (1- (frame-width)))
-                                        (rcirc-fill-column
-                                         rcirc-fill-column)
-                                        (t fill-column))))
-                 (fill-region fill-start rcirc-prompt-start-marker 'left t)))))
-
-         ;; set inserted text to be read-only
-         (when rcirc-read-only-flag
-           (put-text-property rcirc-prompt-start-marker fill-start 'read-only t)
-           (let ((inhibit-read-only t))
-             (put-text-property rcirc-prompt-start-marker fill-start
-                                'front-sticky t)
-             (put-text-property (1- (point)) (point) 'rear-nonsticky t)))
+         (let ((start (point)))
+           (insert (rcirc-format-response-string process sender response nil
+                                                 text)
+                   (propertize "\n" 'hard t))
+
+           ;; squeeze spaces out of text before rcirc-text
+           (fill-region fill-start
+                        (1- (or (next-single-property-change fill-start
+                                                             'rcirc-text)
+                                rcirc-prompt-end-marker)))
+
+           ;; run markup functions
+           (save-excursion
+             (save-restriction
+               (narrow-to-region start rcirc-prompt-start-marker)
+               (goto-char (or (next-single-property-change start 'rcirc-text)
+                              (point)))
+               (when (rcirc-buffer-process)
+                 (save-excursion (rcirc-markup-timestamp sender response))
+                 (dolist (fn rcirc-markup-text-functions)
+                   (save-excursion (funcall fn sender response)))
+                 (when rcirc-fill-flag
+                   (save-excursion (rcirc-markup-fill sender response))))
+
+               (when rcirc-read-only-flag
+                 (add-text-properties (point-min) (point-max)
+                                      '(read-only t front-sticky t))))
+             ;; make text omittable
+             (let ((last-activity-lines (rcirc-elapsed-lines process sender target)))
+               (if (and (not (string= (rcirc-nick process) sender))
+                        (member response rcirc-omit-responses)
+                        (or (not last-activity-lines)
+                            (< rcirc-omit-threshold last-activity-lines)))
+                   (put-text-property (1- start) (1- rcirc-prompt-start-marker)
+                                      'invisible 'rcirc-omit)
+                 ;; otherwise increment the line count
+                 (setq rcirc-current-line (1+ rcirc-current-line))))))
+
+         (set-marker-insertion-type rcirc-prompt-start-marker nil)
+         (set-marker-insertion-type rcirc-prompt-end-marker nil)
 
          ;; truncate buffer if it is very long
          (save-excursion
@@ -1122,48 +1433,80 @@ record activity."
 
          ;; set the window point for buffers show in windows
          (walk-windows (lambda (w)
-                         (unless (eq (selected-window) w)
-                           (when (and (eq (current-buffer)
-                                          (window-buffer w))
-                                      (>= (window-point w)
-                                          rcirc-prompt-end-marker))
-                             (set-window-point w (point-max)))))
+                         (when (and (not (eq (selected-window) w))
+                                    (eq (current-buffer)
+                                        (window-buffer w))
+                                    (>= (window-point w)
+                                        rcirc-prompt-end-marker))
+                             (set-window-point w (point-max))))
                        nil t)
 
          ;; restore the point
          (goto-char (if moving rcirc-prompt-end-marker old-point))
 
+         ;; keep window on bottom line if it was already there
+         (when rcirc-scroll-show-maximum-output
+           (walk-windows (lambda (w)
+                           (when (eq (window-buffer w) (current-buffer))
+                             (with-current-buffer (window-buffer w)
+                               (when (eq major-mode 'rcirc-mode)
+                                 (with-selected-window w
+                                   (when (<= (- (window-height)
+                                                (count-screen-lines (window-point)
+                                                                    (window-start))
+                                                1)
+                                             0)
+                                     (recenter -1)))))))
+                                 nil t))
+
          ;; flush undo (can we do something smarter here?)
          (buffer-disable-undo)
          (buffer-enable-undo))
 
        ;; record modeline activity
-       (when activity
-         (let ((nick-match
-                (string-match (concat "\\b"
-                                      (regexp-quote (rcirc-nick process))
-                                      "\\b")
-                              text)))
-           (when (or (not rcirc-ignore-buffer-activity-flag)
-                     ;; always notice when our nick is mentioned, even
-                     ;; if ignoring channel activity
-                     nick-match)
-             (rcirc-record-activity
-              (current-buffer)
-              (when (or nick-match (not (rcirc-channel-p rcirc-target)))
-                'nick)))))
+       (when (and activity
+                  (not rcirc-ignore-buffer-activity-flag)
+                  (not (and rcirc-dim-nicks sender
+                            (string-match (regexp-opt rcirc-dim-nicks) sender)
+                            (rcirc-channel-p target))))
+             (rcirc-record-activity (current-buffer)
+                                    (when (not (rcirc-channel-p rcirc-target))
+                                      'nick)))
+
+       (when rcirc-log-flag
+         (rcirc-log process sender response target text))
 
        (sit-for 0)                     ; displayed text before hook
        (run-hook-with-args 'rcirc-print-hooks
                            process sender response target text)))))
 
-(defun rcirc-startup-channels (server)
-  "Return the list of startup channels for SERVER."
-  (let (channels)
-    (dolist (i rcirc-startup-channels-alist)
-      (if (string-match (car i) server)
-          (setq channels (append channels (cdr i)))))
-    channels))
+(defun rcirc-log (process sender response target text)
+  "Record line in `rcirc-log', to be later written to disk."
+  (let* ((filename (rcirc-generate-new-buffer-name process target))
+        (cell (assoc-string filename rcirc-log-alist))
+        (line (concat (format-time-string rcirc-time-format)
+                      (substring-no-properties
+                       (rcirc-format-response-string process sender
+                                                     response target text))
+                      "\n")))
+    (if cell
+       (setcdr cell (concat (cdr cell) line))
+      (setq rcirc-log-alist
+           (cons (cons filename line) rcirc-log-alist)))))
+
+(defun rcirc-log-write ()
+  "Flush `rcirc-log-alist' data to disk.
+
+Log data is written to `rcirc-log-directory'."
+  (make-directory rcirc-log-directory t)
+  (dolist (cell rcirc-log-alist)
+    (with-temp-buffer
+      (insert (cdr cell))
+      (let ((coding-system-for-write 'utf-8))
+       (write-region (point-min) (point-max)
+                     (concat rcirc-log-directory "/" (car cell))
+                     t 'quiet))))
+  (setq rcirc-log-alist nil))
 
 (defun rcirc-join-channels (process channels)
   "Join CHANNELS."
@@ -1173,34 +1516,34 @@ record activity."
        (rcirc-cmd-join channel process)))))
 \f
 ;;; nick management
+(defvar rcirc-nick-prefix-chars "~&@%+")
 (defun rcirc-user-nick (user)
   "Return the nick from USER.  Remove any non-nick junk."
   (save-match-data
-    (if (string-match "^[@%+]?\\([^! ]+\\)!?" (or user ""))
+    (if (string-match (concat "^[" rcirc-nick-prefix-chars
+                             "]?\\([^! ]+\\)!?") (or user ""))
        (match-string 1 user)
       user)))
 
-(defun rcirc-user-non-nick (user)
-  "Return the non-nick portion of USER."
-  (if (string-match "^[@+]?[^! ]+!?\\(.*\\)" (or user ""))
-      (match-string 1 user)
-    user))
-
 (defun rcirc-nick-channels (process nick)
   "Return list of channels for NICK."
   (with-rcirc-process-buffer process
     (mapcar (lambda (x) (car x))
            (gethash nick rcirc-nick-table))))
 
-(defun rcirc-put-nick-channel (process nick channel)
-  "Add CHANNEL to list associated with NICK."
+(defun rcirc-put-nick-channel (process nick channel &optional line)
+  "Add CHANNEL to list associated with NICK.
+Update the associated linestamp if LINE is non-nil.
+
+If the record doesn't exist, and LINE is nil, set the linestamp
+to zero."
   (let ((nick (rcirc-user-nick nick)))
     (with-rcirc-process-buffer process
       (let* ((chans (gethash nick rcirc-nick-table))
             (record (assoc-string channel chans t)))
        (if record
-           (setcdr record (current-time))
-         (puthash nick (cons (cons channel (current-time))
+           (when line (setcdr record line))
+         (puthash nick (cons (cons channel (or line 0))
                              chans)
                   rcirc-nick-table))))))
 
@@ -1223,18 +1566,24 @@ record activity."
           (puthash nick newchans rcirc-nick-table)
         (remhash nick rcirc-nick-table)))))
 
-(defun rcirc-channel-nicks (process channel)
-  "Return the list of nicks in CHANNEL sorted by last activity."
-  (with-rcirc-process-buffer process
-    (let (nicks)
-      (maphash
-       (lambda (k v)
-         (let ((record (assoc-string channel v t)))
-           (if record
-               (setq nicks (cons (cons k (cdr record)) nicks)))))
-       rcirc-nick-table)
-      (mapcar (lambda (x) (car x))
-              (sort nicks (lambda (x y) (time-less-p (cdr y) (cdr x))))))))
+(defun rcirc-channel-nicks (process target)
+  "Return the list of nicks associated with TARGET sorted by last activity."
+  (when target
+    (if (rcirc-channel-p target)
+       (with-rcirc-process-buffer process
+         (let (nicks)
+           (maphash
+            (lambda (k v)
+              (let ((record (assoc-string target v t)))
+                (if record
+                    (setq nicks (cons (cons k (cdr record)) nicks)))))
+            rcirc-nick-table)
+           (mapcar (lambda (x) (car x))
+                   (sort nicks (lambda (x y)
+                                 (let ((lx (or (cdr x) 0))
+                                       (ly (or (cdr y) 0)))
+                                   (< ly lx)))))))
+      (list target))))
 
 (defun rcirc-ignore-update-automatic (nick)
   "Remove NICK from `rcirc-ignore-list'
@@ -1253,9 +1602,7 @@ if NICK is also on `rcirc-ignore-list-automatic'."
 (define-key rcirc-track-minor-mode-map (kbd "C-c C-@") 'rcirc-next-active-buffer)
 (define-key rcirc-track-minor-mode-map (kbd "C-c C-SPC") 'rcirc-next-active-buffer)
 
-;;; FIXME: the code to insert `rcirc-activity-string' into
-;;; `global-mode-string' isn't called when the mode is activated by
-;;; customize.  I don't know how to set that up.
+;;;###autoload
 (define-minor-mode rcirc-track-minor-mode
   "Global minor mode for tracking activity in rcirc buffers."
   :init-value nil
@@ -1266,15 +1613,26 @@ if NICK is also on `rcirc-ignore-list-automatic'."
   (or global-mode-string (setq global-mode-string '("")))
   ;; toggle the mode-line channel indicator
   (if rcirc-track-minor-mode
-      (and (not (memq 'rcirc-activity-string global-mode-string))
-          (setq global-mode-string
-                (append global-mode-string '(rcirc-activity-string))))
-    (setq global-mode-string 
-         (delete 'rcirc-activity-string global-mode-string))))
+      (progn
+       (and (not (memq 'rcirc-activity-string global-mode-string))
+            (setq global-mode-string
+                  (append global-mode-string '(rcirc-activity-string))))
+       (add-hook 'window-configuration-change-hook
+                 'rcirc-window-configuration-change))
+    (setq global-mode-string
+         (delete 'rcirc-activity-string global-mode-string))
+    (remove-hook 'window-configuration-change-hook
+                'rcirc-window-configuration-change)))
 
 (or (assq 'rcirc-ignore-buffer-activity-flag minor-mode-alist)
     (setq minor-mode-alist
           (cons '(rcirc-ignore-buffer-activity-flag " Ignore") minor-mode-alist)))
+(or (assq 'rcirc-low-priority-flag minor-mode-alist)
+    (setq minor-mode-alist
+          (cons '(rcirc-low-priority-flag " LowPri") minor-mode-alist)))
+(or (assq 'rcirc-omit-mode minor-mode-alist)
+    (setq minor-mode-alist
+          (cons '(rcirc-omit-mode " Omit") minor-mode-alist)))
 
 (defun rcirc-toggle-ignore-buffer-activity ()
   "Toggle the value of `rcirc-ignore-buffer-activity-flag'."
@@ -1286,47 +1644,77 @@ if NICK is also on `rcirc-ignore-list-automatic'."
             "Notice activity in this buffer"))
   (force-mode-line-update))
 
-(defvar rcirc-switch-to-buffer-function 'switch-to-buffer
-  "Function to use when switching buffers.
-Possible values are `switch-to-buffer', `pop-to-buffer', and
-`display-buffer'.")
+(defun rcirc-toggle-low-priority ()
+  "Toggle the value of `rcirc-low-priority-flag'."
+  (interactive)
+  (setq rcirc-low-priority-flag
+       (not rcirc-low-priority-flag))
+  (message (if rcirc-low-priority-flag
+              "Activity in this buffer is low priority"
+            "Activity in this buffer is normal priority"))
+  (force-mode-line-update))
+
+(defun rcirc-omit-mode ()
+  "Toggle the Rcirc-Omit mode.
+If enabled, \"uninteresting\" lines are not shown.
+Uninteresting lines are those whose responses are listed in
+`rcirc-omit-responses'."
+  (interactive)
+  (setq rcirc-omit-mode (not rcirc-omit-mode))
+  (if rcirc-omit-mode
+      (progn
+       (add-to-invisibility-spec '(rcirc-omit . t))
+       (message "Rcirc-Omit mode enabled"))
+    (remove-from-invisibility-spec '(rcirc-omit . t))
+    (message "Rcirc-Omit mode disabled"))
+    (recenter (when (> (point) rcirc-prompt-start-marker) -1)))
 
 (defun rcirc-switch-to-server-buffer ()
   "Switch to the server buffer associated with current channel buffer."
   (interactive)
-  (funcall rcirc-switch-to-buffer-function (process-buffer rcirc-process)))
+  (switch-to-buffer rcirc-server-buffer))
 
 (defun rcirc-jump-to-first-unread-line ()
   "Move the point to the first unread line in this buffer."
   (interactive)
-  (when (marker-position overlay-arrow-position)
-    (goto-char overlay-arrow-position)))
-
-(defvar rcirc-last-non-irc-buffer nil
-  "The buffer to switch to when there is no more activity.")
+  (if (marker-position overlay-arrow-position)
+      (goto-char overlay-arrow-position)
+    (message "No unread messages")))
+
+(defun rcirc-non-irc-buffer ()
+  (let ((buflist (buffer-list))
+       buffer)
+    (while (and buflist (not buffer))
+      (with-current-buffer (car buflist)
+       (unless (or (eq major-mode 'rcirc-mode)
+                   (= ?\s (aref (buffer-name) 0)) ; internal buffers
+                   (get-buffer-window (current-buffer)))
+         (setq buffer (current-buffer))))
+      (setq buflist (cdr buflist)))
+    buffer))
 
 (defun rcirc-next-active-buffer (arg)
-  "Go to the ARGth rcirc buffer with activity.
-The function given by `rcirc-switch-to-buffer-function' is used to
-show the buffer."
-  (interactive "p")
-  (if rcirc-activity
-      (progn
-        (unless (eq major-mode 'rcirc-mode)
-          (setq rcirc-last-non-irc-buffer (current-buffer)))
-        (if (and (> arg 0)
-                 (<= arg (length rcirc-activity)))
-            (funcall rcirc-switch-to-buffer-function
-                    (nth (1- arg) rcirc-activity))
-          (message "Invalid arg: %d" arg)))
-    (if (eq major-mode 'rcirc-mode)
-        (if (not (and rcirc-last-non-irc-buffer
-                      (buffer-live-p rcirc-last-non-irc-buffer)))
-            (message "No IRC activity.  Start something.")
-         (message "No more IRC activity.  Go back to work.")
-          (funcall rcirc-switch-to-buffer-function rcirc-last-non-irc-buffer)
-          (setq rcirc-last-non-irc-buffer nil))
-      (message "No IRC activity."))))
+  "Switch to the next rcirc buffer with activity.
+With prefix ARG, go to the next low priority buffer with activity."
+  (interactive "P")
+  (let* ((pair (rcirc-split-activity rcirc-activity))
+        (lopri (car pair))
+        (hipri (cdr pair)))
+    (if (or (and (not arg) hipri)
+           (and arg lopri))
+       (progn
+         (switch-to-buffer (car (if arg lopri hipri)))
+         (when (> (point) rcirc-prompt-start-marker)
+           (recenter -1)))
+      (if (eq major-mode 'rcirc-mode)
+         (switch-to-buffer (rcirc-non-irc-buffer))
+       (message "%s" (concat
+                      "No IRC activity."
+                      (when lopri
+                        (concat
+                         "  Type C-u "
+                         (key-description (this-command-keys))
+                         " for low priority activity."))))))))
 
 (defvar rcirc-activity-hooks nil
   "Hook to be run when there is channel activity.
@@ -1335,66 +1723,130 @@ Functions are called with a single argument, the buffer with the
 activity.  Only run if the buffer is not visible and
 `rcirc-ignore-buffer-activity-flag' is non-nil.")
 
-(defun rcirc-record-activity (buffer type)
+(defun rcirc-record-activity (buffer &optional type)
   "Record BUFFER activity with TYPE."
   (with-current-buffer buffer
-    (when (not (get-buffer-window (current-buffer) t))
-      (add-to-list 'rcirc-activity (current-buffer))
-      (if (not rcirc-activity-type)
-          (setq rcirc-activity-type type))
-      (rcirc-update-activity-string)))
+    (let ((old-activity rcirc-activity)
+         (old-types rcirc-activity-types))
+      (when (not (get-buffer-window (current-buffer) t))
+       (setq rcirc-activity
+             (sort (add-to-list 'rcirc-activity (current-buffer))
+                   (lambda (b1 b2)
+                     (let ((t1 (with-current-buffer b1 rcirc-last-post-time))
+                           (t2 (with-current-buffer b2 rcirc-last-post-time)))
+                       (time-less-p t2 t1)))))
+       (pushnew type rcirc-activity-types)
+       (unless (and (equal rcirc-activity old-activity)
+                    (member type old-types))
+         (rcirc-update-activity-string)))))
   (run-hook-with-args 'rcirc-activity-hooks buffer))
 
 (defun rcirc-clear-activity (buffer)
   "Clear the BUFFER activity."
-  (setq rcirc-activity (delete buffer rcirc-activity))
+  (setq rcirc-activity (remove buffer rcirc-activity))
   (with-current-buffer buffer
-    (setq rcirc-activity-type nil)))
+    (setq rcirc-activity-types nil)))
+
+(defun rcirc-clear-unread (buffer)
+  "Erase the last read message arrow from BUFFER."
+  (when (buffer-live-p buffer)
+    (with-current-buffer buffer
+      (set-marker overlay-arrow-position nil))))
+
+(defun rcirc-split-activity (activity)
+  "Return a cons cell with ACTIVITY split into (lopri . hipri)."
+  (let (lopri hipri)
+    (dolist (buf rcirc-activity)
+      (with-current-buffer buf
+       (if (and rcirc-low-priority-flag
+                (not (member 'nick rcirc-activity-types)))
+           (add-to-list 'lopri buf t)
+         (add-to-list 'hipri buf t))))
+    (cons lopri hipri)))
+
+(defvar rcirc-update-activity-string-hook nil
+  "Hook run whenever the activity string is updated.")
 
 ;; TODO: add mouse properties
 (defun rcirc-update-activity-string ()
   "Update mode-line string."
-  (setq rcirc-activity-string
-       (if (not rcirc-activity)
-              ""
-         (concat " ["
-                 (mapconcat
-                  (lambda (b)
-                    (let ((s (rcirc-short-buffer-name b)))
-                      (with-current-buffer b
-                        (if (not (eq rcirc-activity-type 'nick))
-                            s
-                          (rcirc-facify s 'rcirc-mode-line-nick)))))
-                  rcirc-activity ",")
-                 "]"))))
+  (let* ((pair (rcirc-split-activity rcirc-activity))
+        (lopri (car pair))
+        (hipri (cdr pair)))
+    (setq rcirc-activity-string
+         (cond ((or hipri lopri)
+                (concat (and hipri "[")
+                        (rcirc-activity-string hipri)
+                        (and hipri lopri ",")
+                        (and lopri
+                             (concat "("
+                                     (rcirc-activity-string lopri)
+                                     ")"))
+                        (and hipri "]")))
+               ((not (null (rcirc-process-list)))
+                "[]")
+               (t "[]")))
+    (run-hooks 'rcirc-update-activity-string-hook)))
+
+(defun rcirc-activity-string (buffers)
+  (mapconcat (lambda (b)
+              (let ((s (substring-no-properties (rcirc-short-buffer-name b))))
+                (with-current-buffer b
+                  (dolist (type rcirc-activity-types)
+                    (rcirc-add-face 0 (length s)
+                                    (case type
+                                      (nick 'rcirc-track-nick)
+                                      (keyword 'rcirc-track-keyword))
+                                    s)))
+                s))
+            buffers ","))
 
 (defun rcirc-short-buffer-name (buffer)
   "Return a short name for BUFFER to use in the modeline indicator."
   (with-current-buffer buffer
     (or rcirc-short-buffer-name (buffer-name))))
 
-(defvar rcirc-current-buffer nil)
-(defun rcirc-window-configuration-change ()
-  "Go through visible windows and remove buffers from activity list.
-Also, clear the overlay arrow if the current buffer is now hidden."
-  (let ((current-now-hidden t))
+(defun rcirc-visible-buffers ()
+  "Return a list of the visible buffers that are in rcirc-mode."
+  (let (acc)
     (walk-windows (lambda (w)
-                   (let ((buf (window-buffer w)))
-                     (rcirc-clear-activity buf)
-                     (when (eq buf rcirc-current-buffer)
-                       (setq current-now-hidden nil)))))
-    (when (and rcirc-current-buffer current-now-hidden)
-      (with-current-buffer rcirc-current-buffer
-       (when (eq major-mode 'rcirc-mode)
-         (marker-position overlay-arrow-position)
-         (set-marker overlay-arrow-position nil)))))
-
-  ;; remove any killed buffers from list
-  (setq rcirc-activity
-       (delq nil (mapcar (lambda (buf) (when (buffer-live-p buf) buf))
-                         rcirc-activity)))
-  (rcirc-update-activity-string)
-  (setq rcirc-current-buffer (current-buffer)))
+                   (with-current-buffer (window-buffer w)
+                     (when (eq major-mode 'rcirc-mode)
+                       (push (current-buffer) acc)))))
+    acc))
+
+(defvar rcirc-visible-buffers nil)
+(defun rcirc-window-configuration-change ()
+  (unless (minibuffer-window-active-p (minibuffer-window))
+    ;; delay this until command has finished to make sure window is
+    ;; actually visible before clearing activity
+    (add-hook 'post-command-hook 'rcirc-window-configuration-change-1)))
+
+(defun rcirc-window-configuration-change-1 ()
+  ;; clear activity and overlay arrows
+  (let* ((old-activity rcirc-activity)
+        (hidden-buffers rcirc-visible-buffers))
+
+    (setq rcirc-visible-buffers (rcirc-visible-buffers))
+
+    (dolist (vbuf rcirc-visible-buffers)
+      (setq hidden-buffers (delq vbuf hidden-buffers))
+      ;; clear activity for all visible buffers
+      (rcirc-clear-activity vbuf))
+
+    ;; clear unread arrow from recently hidden buffers
+    (dolist (hbuf hidden-buffers)
+      (rcirc-clear-unread hbuf))
+
+    ;; remove any killed buffers from list
+    (setq rcirc-activity
+         (delq nil (mapcar (lambda (buf) (when (buffer-live-p buf) buf))
+                           rcirc-activity)))
+    ;; update the mode-line string
+    (unless (equal old-activity rcirc-activity)
+      (rcirc-update-activity-string)))
+
+  (remove-hook 'post-command-hook 'rcirc-window-configuration-change-1))
 
 \f
 ;;; buffer name abbreviation
@@ -1405,8 +1857,9 @@ Also, clear the overlay arrow if the current buffer is now hidden."
                                    rcirc-buffer-alist))
                                (rcirc-process-list)))))
     (dolist (i (rcirc-abbreviate bufalist))
-      (with-current-buffer (cdr i)
-       (setq rcirc-short-buffer-name (car i))))))
+      (when (buffer-live-p (cdr i))
+       (with-current-buffer (cdr i)
+         (setq rcirc-short-buffer-name (car i)))))))
 
 (defun rcirc-abbreviate (pairs)
   (apply 'append (mapcar 'rcirc-rebuild-tree (rcirc-make-trees pairs))))
@@ -1461,11 +1914,10 @@ Also, clear the overlay arrow if the current buffer is now hidden."
   "Define a command."
   `(defun ,(intern (concat "rcirc-cmd-" (symbol-name command)))
      (,@argument &optional process target)
-     ,(concat docstring "\n\nNote: If PROCESS or TARGET are nil, the values of"
-              "\nbuffer local variables `rcirc-process' and `rcirc-target',"
-              "\nwill be used.")
+     ,(concat docstring "\n\nNote: If PROCESS or TARGET are nil, the values given"
+              "\nby `rcirc-buffer-process' and `rcirc-target' will be used.")
      ,interactive-form
-     (let ((process (or process rcirc-process))
+     (let ((process (or process (rcirc-buffer-process)))
            (target (or target rcirc-target)))
        ,@body)))
 
@@ -1475,8 +1927,8 @@ Also, clear the overlay arrow if the current buffer is now hidden."
   (if (null message)
       (progn
         (setq target (completing-read "Message nick: "
-                                      (with-rcirc-process-buffer rcirc-process
-                                        rcirc-nick-table)))
+                                      (with-rcirc-server-buffer
+                                       rcirc-nick-table)))
         (when (> (length target) 0)
           (setq message (read-string (format "Message %s: " target)))
           (when (> (length message) 0)
@@ -1490,8 +1942,7 @@ Also, clear the overlay arrow if the current buffer is now hidden."
 (defun-rcirc-command query (nick)
   "Open a private chat buffer to NICK."
   (interactive (list (completing-read "Query nick: "
-                                      (with-rcirc-process-buffer rcirc-process
-                                        rcirc-nick-table))))
+                                      (with-rcirc-server-buffer rcirc-nick-table))))
   (let ((existing-buffer (rcirc-get-buffer process nick)))
     (switch-to-buffer (or existing-buffer
                          (rcirc-get-buffer-create process nick)))
@@ -1503,10 +1954,11 @@ Also, clear the overlay arrow if the current buffer is now hidden."
   (interactive "sJoin channel: ")
   (let ((buffer (rcirc-get-buffer-create process
                                          (car (split-string channel)))))
+    (rcirc-send-string process (concat "JOIN " channel))
     (when (not (eq (selected-window) (minibuffer-window)))
-      (funcall rcirc-switch-to-buffer-function buffer))
-    (rcirc-send-string process (concat "JOIN " channel))))
+      (switch-to-buffer buffer))))
 
+;; TODO: /part #channel reason, or consider removing #channel altogether
 (defun-rcirc-command part (channel)
   "Part CHANNEL."
   (interactive "sPart channel: ")
@@ -1554,8 +2006,7 @@ With a prefix arg, prompt for new topic."
   "Request information from server about NICK."
   (interactive (list
                 (completing-read "Whois: "
-                                 (with-rcirc-process-buffer rcirc-process
-                                   rcirc-nick-table))))
+                                 (with-rcirc-server-buffer rcirc-nick-table))))
   (rcirc-send-string process (concat "WHOIS " nick)))
 
 (defun-rcirc-command mode (args)
@@ -1583,8 +2034,9 @@ With a prefix arg, prompt for new topic."
   "Kick NICK from current channel."
   (interactive (list
                 (concat (completing-read "Kick nick: "
-                                         (rcirc-channel-nicks rcirc-process
-                                                              rcirc-target))
+                                         (rcirc-channel-nicks
+                                         (rcirc-buffer-process)
+                                         rcirc-target))
                         (read-from-minibuffer "Kick reason: "))))
   (let* ((arglist (split-string arg))
          (argstring (concat (car arglist) " :"
@@ -1605,17 +2057,21 @@ With a prefix arg, prompt for new topic."
   (rcirc-send-string process (format "PRIVMSG %s :\C-aACTION %s\C-a"
                                      target args)))
 
+(defun rcirc-add-or-remove (set &optional elt)
+  (if (and elt (not (string= "" elt)))
+      (if (member-ignore-case elt set)
+         (delete elt set)
+       (cons elt set))
+    set))
+
 (defun-rcirc-command ignore (nick)
   "Manage the ignore list.
 Ignore NICK, unignore NICK if already ignored, or list ignored
 nicks when no NICK is given.  When listing ignored nicks, the
 ones added to the list automatically are marked with an asterisk."
   (interactive "sToggle ignoring of nick: ")
-  (when (not (string= "" nick))
-    (if (member nick rcirc-ignore-list)
-       (setq rcirc-ignore-list (delete nick rcirc-ignore-list))
-      (setq rcirc-ignore-list (cons nick rcirc-ignore-list))))
-  (rcirc-print process (rcirc-nick process) "IGNORE" target 
+  (setq rcirc-ignore-list (rcirc-add-or-remove rcirc-ignore-list nick))
+  (rcirc-print process nil "IGNORE" target
               (mapconcat
                (lambda (nick)
                  (concat nick
@@ -1623,36 +2079,71 @@ ones added to the list automatically are marked with an asterisk."
                              "*" "")))
                rcirc-ignore-list " ")))
 
+(defun-rcirc-command bright (nick)
+  "Manage the bright nick list."
+  (interactive "sToggle emphasis of nick: ")
+  (setq rcirc-bright-nicks (rcirc-add-or-remove rcirc-bright-nicks nick))
+  (rcirc-print process nil "BRIGHT" target
+              (mapconcat 'identity rcirc-bright-nicks " ")))
+
+(defun-rcirc-command dim (nick)
+  "Manage the dim nick list."
+  (interactive "sToggle deemphasis of nick: ")
+  (setq rcirc-dim-nicks (rcirc-add-or-remove rcirc-dim-nicks nick))
+  (rcirc-print process nil "DIM" target
+              (mapconcat 'identity rcirc-dim-nicks " ")))
+
+(defun-rcirc-command keyword (keyword)
+  "Manage the keyword list.
+Mark KEYWORD, unmark KEYWORD if already marked, or list marked
+keywords when no KEYWORD is given."
+  (interactive "sToggle highlighting of keyword: ")
+  (setq rcirc-keywords (rcirc-add-or-remove rcirc-keywords keyword))
+  (rcirc-print process nil "KEYWORD" target
+              (mapconcat 'identity rcirc-keywords " ")))
+
 \f
-(defun rcirc-message-leader (sender face)
-  "Return a string with SENDER propertized with FACE."
-  (rcirc-facify (concat "<" sender "> ") face))
+(defun rcirc-add-face (start end name &optional object)
+  "Add face NAME to the face text property of the text from START to END."
+  (when name
+    (let ((pos start)
+         next prop)
+      (while (< pos end)
+       (setq prop (get-text-property pos 'face object)
+             next (next-single-property-change pos 'face object end))
+       (unless (member name (get-text-property pos 'face object))
+         (add-text-properties pos next (list 'face (cons name prop)) object))
+       (setq pos next)))))
 
 (defun rcirc-facify (string face)
   "Return a copy of STRING with FACE property added."
-  (propertize (or string "") 'face face 'rear-nonsticky t))
+  (let ((string (or string "")))
+    (rcirc-add-face 0 (length string) face string)
+    string))
 
 (defvar rcirc-url-regexp
   (rx-to-string
    `(and word-boundary
-        (or "www."
-            (and (or "http" "https" "ftp" "file" "gopher" "news" "telnet" 
-                     "wais" "mailto")
-                 "://"
-                 (1+ (char "-a-zA-Z0-9_."))
-                 (optional ":" (1+ (char "0-9"))))
+        (or (and
+             (or (and (or "http" "https" "ftp" "file" "gopher" "news"
+                          "telnet" "wais" "mailto")
+                      "://")
+                 "www.")
+             (1+ (char "-a-zA-Z0-9_."))
+             (1+ (char "-a-zA-Z0-9_"))
+             (optional ":" (1+ (char "0-9"))))
             (and (1+ (char "-a-zA-Z0-9_."))
                  (or ".com" ".net" ".org")
                  word-boundary))
-        (optional 
+        (optional
          (and "/"
-              (1+ (char "-a-zA-Z0-9_=!?#$\@~`%&*+|\\/:;.,{}[]"))
-              (char "-a-zA-Z0-9_=#$\@~`%&*+|\\/:;{}[]")))))
+              (1+ (char "-a-zA-Z0-9_='!?#$\@~`%&*+|\\/:;.,{}[]()"))
+              (char "-a-zA-Z0-9_=#$\@~`%&*+|\\/:;{}[]()")))))
   "Regexp matching URLs.  Set to nil to disable URL features in rcirc.")
 
 (defun rcirc-browse-url (&optional arg)
   "Prompt for URL to browse based on URLs in buffer."
-  (interactive)
+  (interactive "P")
   (let ((completions (mapcar (lambda (x) (cons x nil)) rcirc-urls))
         (initial-input (car rcirc-urls))
         (history (cdr rcirc-urls)))
@@ -1663,7 +2154,7 @@ ones added to the list automatically are marked with an asterisk."
 (defun rcirc-browse-url-at-point (point)
   "Send URL at point to `browse-url'."
   (interactive "d")
-  (let ((beg (previous-single-property-change point 'mouse-face))
+  (let ((beg (previous-single-property-change (1+ point) 'mouse-face))
        (end (next-single-property-change point 'mouse-face)))
     (browse-url (buffer-substring-no-properties beg end))))
 
@@ -1674,68 +2165,87 @@ ones added to the list automatically are marked with an asterisk."
     (with-current-buffer (window-buffer (posn-window position))
       (rcirc-browse-url-at-point (posn-point position)))))
 
-(defun rcirc-map-regexp (function regexp string)
-  "Return a copy of STRING after calling FUNCTION for each REGEXP match.
-FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
-  (let ((start 0))
-    (while (string-match regexp string start)
-      (setq start (match-end 0))
-      (funcall function (match-beginning 0) (match-end 0) string)))
-  string)
-
-(defun rcirc-mangle-text (process text)
-  "Return TEXT with properties added based on various patterns."
-  ;; ^B
-  (setq text
-        (rcirc-map-regexp
-        (lambda (start end string)
-          (let ((orig-face (get-text-property start 'face string)))
-              (add-text-properties
-               start end
-               (list 'face (if (listp orig-face)
-                               (append orig-face
-                                       (list 'bold))
-                             (list orig-face 'bold))
-                     'rear-nonsticky t)
-               string)))
-          "\ 2.*?\ 2"
-          text))
-  ;; TODO: deal with ^_ and ^C colors sequences
-  (while (string-match "\\(.*\\)[\ 2\ 1]\\(.*\\)" text)
-    (setq text (concat (match-string 1 text)
-                       (match-string 2 text))))
-  ;; my nick
-  (setq text
-        (with-syntax-table rcirc-nick-syntax-table
-          (rcirc-map-regexp (lambda (start end string)
-                              (add-text-properties
-                               start end
-                               (list 'face 'rcirc-nick-in-message
-                                     'rear-nonsticky t)
-                               string))
-                            (concat "\\b"
-                                    (regexp-quote (rcirc-nick process))
-                                    "\\b")
-                            text)))
-  ;; urls
-  (setq text
-        (rcirc-map-regexp
-        (lambda (start end string)
-          (let ((orig-face (get-text-property start 'face string)))
-            (add-text-properties start end
-                                 (list 'face (if (listp orig-face)
-                                                 (append orig-face
-                                                         (list 'bold))
-                                               (list orig-face 'bold))
-                                       'rear-nonsticky t
-                                       'mouse-face 'highlight
-                                       'keymap rcirc-browse-url-map)
-                                 string))
-            (push (substring-no-properties string start end) rcirc-urls))
-          rcirc-url-regexp
-          text))
-  text)
-
+\f
+(defun rcirc-markup-timestamp (sender response)
+  (goto-char (point-min))
+  (insert (rcirc-facify (format-time-string rcirc-time-format)
+                       'rcirc-timestamp)))
+
+(defun rcirc-markup-attributes (sender response)
+  (while (re-search-forward "\\([\C-b\C-_\C-v]\\).*?\\(\\1\\|\C-o\\)" nil t)
+    (rcirc-add-face (match-beginning 0) (match-end 0)
+                   (case (char-after (match-beginning 1))
+                     (?\C-b 'bold)
+                     (?\C-v 'italic)
+                     (?\C-_ 'underline)))
+    ;; keep the ^O since it could terminate other attributes
+    (when (not (eq ?\C-o (char-before (match-end 2))))
+      (delete-region (match-beginning 2) (match-end 2)))
+    (delete-region (match-beginning 1) (match-end 1))
+    (goto-char (1+ (match-beginning 1))))
+  ;; remove the ^O characters now
+  (while (re-search-forward "\C-o+" nil t)
+    (delete-region (match-beginning 0) (match-end 0))))
+
+(defun rcirc-markup-my-nick (sender response)
+  (with-syntax-table rcirc-nick-syntax-table
+    (while (re-search-forward (concat "\\b"
+                                     (regexp-quote (rcirc-nick
+                                                    (rcirc-buffer-process)))
+                                     "\\b")
+                             nil t)
+      (rcirc-add-face (match-beginning 0) (match-end 0)
+                     'rcirc-nick-in-message)
+      (when (string= response "PRIVMSG")
+       (rcirc-add-face (point-min) (point-max)
+                       'rcirc-nick-in-message-full-line)
+       (rcirc-record-activity (current-buffer) 'nick)))))
+
+(defun rcirc-markup-urls (sender response)
+  (while (re-search-forward rcirc-url-regexp nil t)
+    (let ((start (match-beginning 0))
+         (end (match-end 0)))
+      (rcirc-add-face start end 'rcirc-url)
+      (add-text-properties start end (list 'mouse-face 'highlight
+                                          'keymap rcirc-browse-url-map))
+      ;; record the url
+      (push (buffer-substring-no-properties start end) rcirc-urls))))
+
+(defun rcirc-markup-keywords (sender response)
+  (when (and (string= response "PRIVMSG")
+            (not (string= sender (rcirc-nick (rcirc-buffer-process)))))
+    (let* ((target (or rcirc-target ""))
+          (keywords (delq nil (mapcar (lambda (keyword)
+                                        (when (not (string-match keyword
+                                                                 target))
+                                          keyword))
+                                      rcirc-keywords))))
+      (when keywords
+       (while (re-search-forward (regexp-opt keywords 'words) nil t)
+         (rcirc-add-face (match-beginning 0) (match-end 0) 'rcirc-keyword)
+         (rcirc-record-activity (current-buffer) 'keyword))))))
+
+(defun rcirc-markup-bright-nicks (sender response)
+  (when (and rcirc-bright-nicks
+            (string= response "NAMES"))
+    (with-syntax-table rcirc-nick-syntax-table
+      (while (re-search-forward (regexp-opt rcirc-bright-nicks 'words) nil t)
+       (rcirc-add-face (match-beginning 0) (match-end 0)
+                       'rcirc-bright-nick)))))
+
+(defun rcirc-markup-fill (sender response)
+  (when (not (string= response "372"))         ; /motd
+    (let ((fill-prefix
+          (or rcirc-fill-prefix
+              (make-string (- (point) (line-beginning-position)) ?\s)))
+         (fill-column (- (cond ((eq rcirc-fill-column 'frame-width)
+                                (1- (frame-width)))
+                               (rcirc-fill-column
+                                rcirc-fill-column)
+                               (t fill-column))
+                         ;; make sure ... doesn't cause line wrapping
+                         3)))          
+      (fill-region (point) (point-max) nil t))))
 \f
 ;;; handlers
 ;; these are called with the server PROCESS, the SENDER, which is a
@@ -1744,9 +2254,10 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
 ;; verbatim
 (defun rcirc-handler-001 (process sender args text)
   (rcirc-handler-generic process "001" sender args text)
-  ;; set the real server name
   (with-rcirc-process-buffer process
-    (setq rcirc-server sender)
+    (setq rcirc-connecting nil)
+    (rcirc-reschedule-timeout process)
+    (setq rcirc-server-name sender)
     (setq rcirc-nick (car args))
     (rcirc-update-prompt)
     (when rcirc-auto-authenticate-flag (rcirc-authenticate))
@@ -1760,9 +2271,9 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
     (if (string-match "^\C-a\\(.*\\)\C-a$" message)
         (rcirc-handler-CTCP process target sender (match-string 1 message))
       (rcirc-print process sender "PRIVMSG" target message t))
-    ;; update nick timestamp
-    (if (member target (rcirc-nick-channels process sender))
-        (rcirc-put-nick-channel process sender target))))
+    ;; update nick linestamp
+    (with-current-buffer (rcirc-get-buffer process target t)
+      (rcirc-put-nick-channel process sender target rcirc-current-line))))
 
 (defun rcirc-handler-NOTICE (process sender args text)
   (let ((target (car args))
@@ -1774,10 +2285,10 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
                   (cond ((rcirc-channel-p target)
                          target)
                         ;;; -ChanServ- [#gnu] Welcome...
-                        ((string-match "^\\[\\(#[^ ]+\\)\\]" message)
+                        ((string-match "\\[\\(#[^\] ]+\\)\\]" message)
                          (match-string 1 message))
                         (sender
-                         (if (string= sender (rcirc-server process))
+                         (if (string= sender (rcirc-server-name process))
                              nil       ; server notice
                            sender)))
                  message t))))
@@ -1787,26 +2298,29 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
 
 (defun rcirc-handler-JOIN (process sender args text)
   (let ((channel (car args)))
-    (rcirc-get-buffer-create process channel)
+    (with-current-buffer (rcirc-get-buffer-create process channel)
+      ;; when recently rejoining, restore the linestamp
+      (rcirc-put-nick-channel process sender channel
+                             (let ((last-activity-lines
+                                    (rcirc-elapsed-lines process sender channel)))
+                               (when (and last-activity-lines
+                                          (< last-activity-lines rcirc-omit-threshold))
+                                 (rcirc-last-line process sender channel)))))
+
     (rcirc-print process sender "JOIN" channel "")
 
     ;; print in private chat buffer if it exists
-    (when (rcirc-get-buffer rcirc-process sender)
-      (rcirc-print process sender "JOIN" sender channel))
-
-    (rcirc-put-nick-channel process sender channel)))
+    (when (rcirc-get-buffer (rcirc-buffer-process) sender)
+      (rcirc-print process sender "JOIN" sender channel))))
 
 ;; PART and KICK are handled the same way
 (defun rcirc-handler-PART-or-KICK (process response channel sender nick args)
-  (rcirc-print process sender response channel (concat channel " " args))
-
-  ;; print in private chat buffer if it exists
-  (when (rcirc-get-buffer rcirc-process nick)
-    (rcirc-print process sender response nick (concat channel " " args)))
-
+  (rcirc-ignore-update-automatic nick)
   (if (not (string= nick (rcirc-nick process)))
       ;; this is someone else leaving
-      (rcirc-remove-nick-channel process nick channel)
+      (progn
+       (rcirc-maybe-remember-nick-quit process nick channel)
+       (rcirc-remove-nick-channel process nick channel))
     ;; this is us leaving
     (mapc (lambda (n)
            (rcirc-remove-nick-channel process n channel))
@@ -1815,29 +2329,55 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
     ;; if the buffer is still around, make it inactive
     (let ((buffer (rcirc-get-buffer process channel)))
       (when buffer
-       (with-current-buffer buffer
-         (setq rcirc-target nil))))))
+       (rcirc-disconnect-buffer buffer)))))
 
 (defun rcirc-handler-PART (process sender args text)
-  (rcirc-ignore-update-automatic sender)
-  (rcirc-handler-PART-or-KICK process "PART"
-                              (car args) sender sender
-                              (cadr args)))
+  (let* ((channel (car args))
+        (reason (cadr args))
+        (message (concat channel " " reason)))
+    (rcirc-print process sender "PART" channel message)
+    ;; print in private chat buffer if it exists
+    (when (rcirc-get-buffer (rcirc-buffer-process) sender)
+      (rcirc-print process sender "PART" sender message))
+
+    (rcirc-handler-PART-or-KICK process "PART" channel sender sender reason)))
 
 (defun rcirc-handler-KICK (process sender args text)
-  (rcirc-handler-PART-or-KICK process "KICK" (car args) sender (cadr args)
-                              (caddr args)))
+  (let* ((channel (car args))
+        (nick (cadr args))
+        (reason (caddr args))
+        (message (concat nick " " channel " " reason)))
+    (rcirc-print process sender "KICK" channel message t)
+    ;; print in private chat buffer if it exists
+    (when (rcirc-get-buffer (rcirc-buffer-process) nick)
+      (rcirc-print process sender "KICK" nick message))
+
+    (rcirc-handler-PART-or-KICK process "KICK" channel sender nick reason)))
+
+(defun rcirc-maybe-remember-nick-quit (process nick channel)
+  "Remember NICK as leaving CHANNEL if they recently spoke."
+  (let ((elapsed-lines (rcirc-elapsed-lines process nick channel)))
+    (when (and elapsed-lines
+              (< elapsed-lines rcirc-omit-threshold))
+      (let ((buffer (rcirc-get-buffer process channel)))
+       (when buffer
+         (with-current-buffer buffer
+           (let ((record (assoc-string nick rcirc-recent-quit-alist t))
+                 (line (rcirc-last-line process nick channel)))
+             (if record
+                 (setcdr record line)
+               (setq rcirc-recent-quit-alist
+                     (cons (cons nick line)
+                           rcirc-recent-quit-alist))))))))))
 
 (defun rcirc-handler-QUIT (process sender args text)
   (rcirc-ignore-update-automatic sender)
   (mapc (lambda (channel)
-         (rcirc-print process sender "QUIT" channel (apply 'concat args)))
+         ;; broadcast quit message each channel
+         (rcirc-print process sender "QUIT" channel (apply 'concat args))
+         ;; record nick in quit table if they recently spoke
+         (rcirc-maybe-remember-nick-quit process sender channel))
        (rcirc-nick-channels process sender))
-
-  ;; print in private chat buffer if it exists
-  (when (rcirc-get-buffer rcirc-process sender)
-    (rcirc-print process sender "QUIT" sender (apply 'concat args)))
-
   (rcirc-nick-remove process sender))
 
 (defun rcirc-handler-NICK (process sender args text)
@@ -1872,7 +2412,7 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
         (when rcirc-auto-authenticate-flag (rcirc-authenticate))))))
 
 (defun rcirc-handler-PING (process sender args text)
-  (rcirc-send-string process (concat "PONG " (car args))))
+  (rcirc-send-string process (concat "PONG :" (car args))))
 
 (defun rcirc-handler-PONG (process sender args text)
   ;; do nothing
@@ -1884,6 +2424,21 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
     (with-current-buffer (rcirc-get-buffer process (car args))
       (setq rcirc-topic topic))))
 
+(defvar rcirc-nick-away-alist nil)
+(defun rcirc-handler-301 (process sender args text)
+  "RPL_AWAY"
+  (let* ((nick (cadr args))
+        (rec (assoc-string nick rcirc-nick-away-alist))
+        (away-message (caddr args)))
+    (when (or (not rec)
+             (not (string= (cdr rec) away-message)))
+      ;; away message has changed
+      (rcirc-handler-generic process "AWAY" nick (cdr args) text)
+      (if rec
+         (setcdr rec away-message)
+       (setq rcirc-nick-away-alist (cons (cons nick away-message)
+                                         rcirc-nick-away-alist))))))
+
 (defun rcirc-handler-332 (process sender args text)
   "RPL_TOPIC"
   (let ((buffer (or (rcirc-get-buffer process (cadr args))
@@ -1957,9 +2512,10 @@ FUNCTION takes 3 arguments, MATCH-START, MATCH-END, and STRING."
   "Send authentication to process associated with current buffer.
 Passwords are stored in `rcirc-authinfo' (which see)."
   (interactive)
-  (with-rcirc-process-buffer rcirc-process
+  (with-rcirc-server-buffer
     (dolist (i rcirc-authinfo)
-      (let ((server (car i))
+      (let ((process (rcirc-buffer-process))
+           (server (car i))
            (nick (caddr i))
            (method (cadr i))
            (args (cdddr i)))
@@ -1967,19 +2523,19 @@ Passwords are stored in `rcirc-authinfo' (which see)."
                   (string-match nick rcirc-nick))
          (cond ((equal method 'nickserv)
                 (rcirc-send-string
-                 rcirc-process
+                 process
                  (concat
                   "PRIVMSG nickserv :identify "
                   (car args))))
                ((equal method 'chanserv)
                 (rcirc-send-string
-                 rcirc-process
+                 process
                  (concat
                   "PRIVMSG chanserv :identify "
-                  (cadr args) " " (car args))))
+                  (car args) " " (cadr args))))
                ((equal method 'bitlbee)
                 (rcirc-send-string
-                 rcirc-process
+                 process
                  (concat "PRIVMSG &bitlbee :identify " (car args))))
                (t
                 (message "No %S authentication method defined"
@@ -2001,7 +2557,8 @@ Passwords are stored in `rcirc-authinfo' (which see)."
                          (format "%s sent unsupported ctcp: %s" sender text)
                         t)
           (funcall handler process target sender args)
-          (if (not (string= request "ACTION"))
+          (unless (or (string= request "ACTION")
+                     (string= request "KEEPALIVE"))
               (rcirc-print process sender "CTCP" target
                           (format "%s" text) t))))))
 
@@ -2051,6 +2608,25 @@ Passwords are stored in `rcirc-authinfo' (which see)."
   "The face used to highlight other messages."
   :group 'rcirc-faces)
 
+(defface rcirc-bright-nick
+  '((((class grayscale) (background light))
+     (:foreground "LightGray" :weight bold :underline t))
+    (((class grayscale) (background dark))
+     (:foreground "Gray50" :weight bold :underline t))
+    (((class color) (min-colors 88) (background light)) (:foreground "CadetBlue"))
+    (((class color) (min-colors 88) (background dark)) (:foreground "Aquamarine"))
+    (((class color) (min-colors 16) (background light)) (:foreground "CadetBlue"))
+    (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine"))
+    (((class color) (min-colors 8)) (:foreground "magenta"))
+    (t (:weight bold :underline t)))
+  "Face used for nicks matched by `rcirc-bright-nicks'."
+  :group 'rcirc-faces)
+
+(defface rcirc-dim-nick
+  '((t :inherit default))
+  "Face used for nicks in `rcirc-dim-nicks'."
+  :group 'rcirc-faces)
+
 (defface rcirc-server                  ; font-lock-comment-face
   '((((class grayscale) (background light))
      (:foreground "DimGray" :weight bold :slant italic))
@@ -2097,7 +2673,12 @@ Passwords are stored in `rcirc-authinfo' (which see)."
     (((class color) (min-colors 16) (background dark)) (:foreground "Cyan"))
     (((class color) (min-colors 8)) (:foreground "cyan" :weight bold))
     (t (:weight bold)))
-  "The face used to highlight instances of nick within messages."
+  "The face used to highlight instances of your nick within messages."
+  :group 'rcirc-faces)
+
+(defface rcirc-nick-in-message-full-line
+  '((t (:bold t)))
+  "The face used emphasize the entire message when your nick is mentioned."
   :group 'rcirc-faces)
 
 (defface rcirc-prompt                  ; comint-highlight-prompt
@@ -2107,10 +2688,27 @@ Passwords are stored in `rcirc-authinfo' (which see)."
   "The face used to highlight prompts."
   :group 'rcirc-faces)
 
-(defface rcirc-mode-line-nick
+(defface rcirc-track-nick
+  '((((type tty)) (:inherit default))
+    (t (:inverse-video t)))
+  "The face used in the mode-line when your nick is mentioned."
+  :group 'rcirc-faces)
+
+(defface rcirc-track-keyword
+  '((t (:bold t )))
+  "The face used in the mode-line when keywords are mentioned."
+  :group 'rcirc-faces)
+
+(defface rcirc-url
   '((t (:bold t)))
-  "The face used indicate activity directed at you."
+  "The face used to highlight urls."
   :group 'rcirc-faces)
+
+(defface rcirc-keyword
+  '((t (:inherit highlight)))
+  "The face used to highlight keywords."
+  :group 'rcirc-faces)
+
 \f
 ;; When using M-x flyspell-mode, only check words after the prompt
 (put 'rcirc-mode 'flyspell-mode-predicate 'rcirc-looking-at-input)