* lisp/files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
[emacs.git] / lisp / net / rcirc.el
bloba0e72d1a6f5a1855717577e5dde1516586dbc7dd
1 ;;; rcirc.el --- default, simple IRC client -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2005-2014 Free Software Foundation, Inc.
5 ;; Author: Ryan Yeske <rcyeske@gmail.com>
6 ;; Maintainers: Ryan Yeske <rcyeske@gmail.com>,
7 ;; Leo Liu <sdl.web@gmail.com>
8 ;; Keywords: comm
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Internet Relay Chat (IRC) is a form of instant communication over
28 ;; the Internet. It is mainly designed for group (many-to-many)
29 ;; communication in discussion forums called channels, but also allows
30 ;; one-to-one communication.
32 ;; Rcirc has simple defaults and clear and consistent behavior.
33 ;; Message arrival timestamps, activity notification on the mode line,
34 ;; message filling, nick completion, and keepalive pings are all
35 ;; enabled by default, but can easily be adjusted or turned off. Each
36 ;; discussion takes place in its own buffer and there is a single
37 ;; server buffer per connection.
39 ;; Open a new irc connection with:
40 ;; M-x irc RET
42 ;;; Todo:
44 ;;; Code:
46 (require 'cl-lib)
47 (require 'ring)
48 (require 'time-date)
50 (defgroup rcirc nil
51 "Simple IRC client."
52 :version "22.1"
53 :prefix "rcirc-"
54 :link '(custom-manual "(rcirc)")
55 :group 'applications)
57 (defcustom rcirc-server-alist
58 '(("irc.freenode.net" :channels ("#rcirc")
59 ;; Don't use the TLS port by default, in case gnutls is not available.
60 ;; :port 7000 :encryption tls
62 "An alist of IRC connections to establish when running `rcirc'.
63 Each element looks like (SERVER-NAME PARAMETERS).
65 SERVER-NAME is a string describing the server to connect
66 to.
68 The optional PARAMETERS come in pairs PARAMETER VALUE.
70 The following parameters are recognized:
72 `:nick'
74 VALUE must be a string. If absent, `rcirc-default-nick' is used
75 for this connection.
77 `:port'
79 VALUE must be a number or string. If absent,
80 `rcirc-default-port' is used.
82 `:user-name'
84 VALUE must be a string. If absent, `rcirc-default-user-name' is
85 used.
87 `:password'
89 VALUE must be a string. If absent, no PASS command will be sent
90 to the server.
92 `:full-name'
94 VALUE must be a string. If absent, `rcirc-default-full-name' is
95 used.
97 `:channels'
99 VALUE must be a list of strings describing which channels to join
100 when connecting to this server. If absent, no channels will be
101 connected to automatically.
103 `:encryption'
105 VALUE must be `plain' (the default) for unencrypted connections, or `tls'
106 for connections using SSL/TLS."
107 :type '(alist :key-type string
108 :value-type (plist :options
109 ((:nick string)
110 (:port integer)
111 (:user-name string)
112 (:password string)
113 (:full-name string)
114 (:channels (repeat string))
115 (:encryption (choice (const tls)
116 (const plain))))))
117 :group 'rcirc)
119 (defcustom rcirc-default-port 6667
120 "The default port to connect to."
121 :type 'integer
122 :group 'rcirc)
124 (defcustom rcirc-default-nick (user-login-name)
125 "Your nick."
126 :type 'string
127 :group 'rcirc)
129 (defcustom rcirc-default-user-name "user"
130 "Your user name sent to the server when connecting."
131 :version "24.1" ; changed default
132 :type 'string
133 :group 'rcirc)
135 (defcustom rcirc-default-full-name "unknown"
136 "The full name sent to the server when connecting."
137 :version "24.1" ; changed default
138 :type 'string
139 :group 'rcirc)
141 (defcustom rcirc-fill-flag t
142 "Non-nil means line-wrap messages printed in channel buffers."
143 :type 'boolean
144 :group 'rcirc)
146 (defcustom rcirc-fill-column nil
147 "Column beyond which automatic line-wrapping should happen.
148 If nil, use value of `fill-column'. If 'frame-width, use the
149 maximum frame width."
150 :type '(choice (const :tag "Value of `fill-column'")
151 (const :tag "Full frame width" frame-width)
152 (integer :tag "Number of columns"))
153 :group 'rcirc)
155 (defcustom rcirc-fill-prefix nil
156 "Text to insert before filled lines.
157 If nil, calculate the prefix dynamically to line up text
158 underneath each nick."
159 :type '(choice (const :tag "Dynamic" nil)
160 (string :tag "Prefix text"))
161 :group 'rcirc)
163 (defvar rcirc-ignore-buffer-activity-flag nil
164 "If non-nil, ignore activity in this buffer.")
165 (make-variable-buffer-local 'rcirc-ignore-buffer-activity-flag)
167 (defvar rcirc-low-priority-flag nil
168 "If non-nil, activity in this buffer is considered low priority.")
169 (make-variable-buffer-local 'rcirc-low-priority-flag)
171 (defvar rcirc-omit-mode nil
172 "Non-nil if Rcirc-Omit mode is enabled.
173 Use the command `rcirc-omit-mode' to change this variable.")
174 (make-variable-buffer-local 'rcirc-omit-mode)
176 (defcustom rcirc-time-format "%H:%M "
177 "Describes how timestamps are printed.
178 Used as the first arg to `format-time-string'."
179 :type 'string
180 :group 'rcirc)
182 (defcustom rcirc-input-ring-size 1024
183 "Size of input history ring."
184 :type 'integer
185 :group 'rcirc)
187 (defcustom rcirc-read-only-flag t
188 "Non-nil means make text in IRC buffers read-only."
189 :type 'boolean
190 :group 'rcirc)
192 (defcustom rcirc-buffer-maximum-lines nil
193 "The maximum size in lines for rcirc buffers.
194 Channel buffers are truncated from the top to be no greater than this
195 number. If zero or nil, no truncating is done."
196 :type '(choice (const :tag "No truncation" nil)
197 (integer :tag "Number of lines"))
198 :group 'rcirc)
200 (defcustom rcirc-scroll-show-maximum-output t
201 "If non-nil, scroll buffer to keep the point at the bottom of
202 the window."
203 :type 'boolean
204 :group 'rcirc)
206 (defcustom rcirc-authinfo nil
207 "List of authentication passwords.
208 Each element of the list is a list with a SERVER-REGEXP string
209 and a method symbol followed by method specific arguments.
211 The valid METHOD symbols are `nickserv', `chanserv' and
212 `bitlbee'.
214 The ARGUMENTS for each METHOD symbol are:
215 `nickserv': NICK PASSWORD [NICKSERV-NICK]
216 `chanserv': NICK CHANNEL PASSWORD
217 `bitlbee': NICK PASSWORD
218 `quakenet': ACCOUNT PASSWORD
220 Examples:
221 ((\"freenode\" nickserv \"bob\" \"p455w0rd\")
222 (\"freenode\" chanserv \"bob\" \"#bobland\" \"passwd99\")
223 (\"bitlbee\" bitlbee \"robert\" \"sekrit\")
224 (\"dal.net\" nickserv \"bob\" \"sekrit\" \"NickServ@services.dal.net\")
225 (\"quakenet.org\" quakenet \"bobby\" \"sekrit\"))"
226 :type '(alist :key-type (string :tag "Server")
227 :value-type (choice (list :tag "NickServ"
228 (const nickserv)
229 (string :tag "Nick")
230 (string :tag "Password"))
231 (list :tag "ChanServ"
232 (const chanserv)
233 (string :tag "Nick")
234 (string :tag "Channel")
235 (string :tag "Password"))
236 (list :tag "BitlBee"
237 (const bitlbee)
238 (string :tag "Nick")
239 (string :tag "Password"))
240 (list :tag "QuakeNet"
241 (const quakenet)
242 (string :tag "Account")
243 (string :tag "Password"))))
244 :group 'rcirc)
246 (defcustom rcirc-auto-authenticate-flag t
247 "Non-nil means automatically send authentication string to server.
248 See also `rcirc-authinfo'."
249 :type 'boolean
250 :group 'rcirc)
252 (defcustom rcirc-authenticate-before-join t
253 "Non-nil means authenticate to services before joining channels.
254 Currently only works with NickServ on some networks."
255 :version "24.1"
256 :type 'boolean
257 :group 'rcirc)
259 (defcustom rcirc-prompt "> "
260 "Prompt string to use in IRC buffers.
262 The following replacements are made:
263 %n is your nick.
264 %s is the server.
265 %t is the buffer target, a channel or a user.
267 Setting this alone will not affect the prompt;
268 use either M-x customize or also call `rcirc-update-prompt'."
269 :type 'string
270 :set 'rcirc-set-changed
271 :initialize 'custom-initialize-default
272 :group 'rcirc)
274 (defcustom rcirc-keywords nil
275 "List of keywords to highlight in message text."
276 :type '(repeat string)
277 :group 'rcirc)
279 (defcustom rcirc-ignore-list ()
280 "List of ignored nicks.
281 Use /ignore to list them, use /ignore NICK to add or remove a nick."
282 :type '(repeat string)
283 :group 'rcirc)
285 (defvar rcirc-ignore-list-automatic ()
286 "List of ignored nicks added to `rcirc-ignore-list' because of renaming.
287 When an ignored person renames, their nick is added to both lists.
288 Nicks will be removed from the automatic list on follow-up renamings or
289 parts.")
291 (defcustom rcirc-bright-nicks nil
292 "List of nicks to be emphasized.
293 See `rcirc-bright-nick' face."
294 :type '(repeat string)
295 :group 'rcirc)
297 (defcustom rcirc-dim-nicks nil
298 "List of nicks to be deemphasized.
299 See `rcirc-dim-nick' face."
300 :type '(repeat string)
301 :group 'rcirc)
303 (define-obsolete-variable-alias 'rcirc-print-hooks
304 'rcirc-print-functions "24.3")
305 (defcustom rcirc-print-functions nil
306 "Hook run after text is printed.
307 Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
308 :type 'hook
309 :group 'rcirc)
311 (defvar rcirc-authenticated-hook nil
312 "Hook run after successfully authenticated.")
314 (defcustom rcirc-always-use-server-buffer-flag nil
315 "Non-nil means messages without a channel target will go to the server buffer."
316 :type 'boolean
317 :group 'rcirc)
319 (defcustom rcirc-decode-coding-system 'utf-8
320 "Coding system used to decode incoming irc messages.
321 Set to 'undecided if you want the encoding of the incoming
322 messages autodetected."
323 :type 'coding-system
324 :group 'rcirc)
326 (defcustom rcirc-encode-coding-system 'utf-8
327 "Coding system used to encode outgoing irc messages."
328 :type 'coding-system
329 :group 'rcirc)
331 (defcustom rcirc-coding-system-alist nil
332 "Alist to decide a coding system to use for a channel I/O operation.
333 The format is ((PATTERN . VAL) ...).
334 PATTERN is either a string or a cons of strings.
335 If PATTERN is a string, it is used to match a target.
336 If PATTERN is a cons of strings, the car part is used to match a
337 target, and the cdr part is used to match a server.
338 VAL is either a coding system or a cons of coding systems.
339 If VAL is a coding system, it is used for both decoding and encoding
340 messages.
341 If VAL is a cons of coding systems, the car part is used for decoding,
342 and the cdr part is used for encoding."
343 :type '(alist :key-type (choice (string :tag "Channel Regexp")
344 (cons (string :tag "Channel Regexp")
345 (string :tag "Server Regexp")))
346 :value-type (choice coding-system
347 (cons (coding-system :tag "Decode")
348 (coding-system :tag "Encode"))))
349 :group 'rcirc)
351 (defcustom rcirc-multiline-major-mode 'fundamental-mode
352 "Major-mode function to use in multiline edit buffers."
353 :type 'function
354 :group 'rcirc)
356 (defcustom rcirc-nick-completion-format "%s: "
357 "Format string to use in nick completions.
359 The format string is only used when completing at the beginning
360 of a line. The string is passed as the first argument to
361 `format' with the nickname as the second argument."
362 :version "24.1"
363 :type 'string
364 :group 'rcirc)
366 (defcustom rcirc-kill-channel-buffers nil
367 "When non-nil, kill channel buffers when the server buffer is killed.
368 Only the channel buffers associated with the server in question
369 will be killed."
370 :version "24.3"
371 :type 'boolean
372 :group 'rcirc)
374 (defvar rcirc-nick nil)
376 (defvar rcirc-prompt-start-marker nil)
377 (defvar rcirc-prompt-end-marker nil)
379 (defvar rcirc-nick-table nil)
381 (defvar rcirc-recent-quit-alist nil
382 "Alist of nicks that have recently quit or parted the channel.")
384 (defvar rcirc-nick-syntax-table
385 (let ((table (make-syntax-table text-mode-syntax-table)))
386 (mapc (lambda (c) (modify-syntax-entry c "w" table))
387 "[]\\`_^{|}-")
388 (modify-syntax-entry ?' "_" table)
389 table)
390 "Syntax table which includes all nick characters as word constituents.")
392 ;; each process has an alist of (target . buffer) pairs
393 (defvar rcirc-buffer-alist nil)
395 (defvar rcirc-activity nil
396 "List of buffers with unviewed activity.")
398 (defvar rcirc-activity-string ""
399 "String displayed in mode line representing `rcirc-activity'.")
400 (put 'rcirc-activity-string 'risky-local-variable t)
402 (defvar rcirc-server-buffer nil
403 "The server buffer associated with this channel buffer.")
405 (defvar rcirc-target nil
406 "The channel or user associated with this buffer.")
408 (defvar rcirc-urls nil
409 "List of URLs seen in the current buffer and their start positions.")
410 (put 'rcirc-urls 'permanent-local t)
412 (defvar rcirc-timeout-seconds 600
413 "Kill connection after this many seconds if there is no activity.")
415 (defconst rcirc-id-string (concat "rcirc on GNU Emacs " emacs-version))
417 (defvar rcirc-startup-channels nil)
419 (defvar rcirc-server-name-history nil
420 "History variable for \\[rcirc] call.")
422 (defvar rcirc-server-port-history nil
423 "History variable for \\[rcirc] call.")
425 (defvar rcirc-nick-name-history nil
426 "History variable for \\[rcirc] call.")
428 (defvar rcirc-user-name-history nil
429 "History variable for \\[rcirc] call.")
431 ;;;###autoload
432 (defun rcirc (arg)
433 "Connect to all servers in `rcirc-server-alist'.
435 Do not connect to a server if it is already connected.
437 If ARG is non-nil, instead prompt for connection parameters."
438 (interactive "P")
439 (if arg
440 (let* ((server (completing-read "IRC Server: "
441 rcirc-server-alist
442 nil nil
443 (caar rcirc-server-alist)
444 'rcirc-server-name-history))
445 (server-plist (cdr (assoc-string server rcirc-server-alist)))
446 (port (read-string "IRC Port: "
447 (number-to-string
448 (or (plist-get server-plist :port)
449 rcirc-default-port))
450 'rcirc-server-port-history))
451 (nick (read-string "IRC Nick: "
452 (or (plist-get server-plist :nick)
453 rcirc-default-nick)
454 'rcirc-nick-name-history))
455 (user-name (read-string "IRC Username: "
456 (or (plist-get server-plist :user-name)
457 rcirc-default-user-name)
458 'rcirc-user-name-history))
459 (password (read-passwd "IRC Password: " nil
460 (plist-get server-plist :password)))
461 (channels (split-string
462 (read-string "IRC Channels: "
463 (mapconcat 'identity
464 (plist-get server-plist
465 :channels)
466 " "))
467 "[, ]+" t))
468 (encryption (rcirc-prompt-for-encryption server-plist)))
469 (rcirc-connect server port nick user-name
470 rcirc-default-full-name
471 channels password encryption))
472 ;; connect to servers in `rcirc-server-alist'
473 (let (connected-servers)
474 (dolist (c rcirc-server-alist)
475 (let ((server (car c))
476 (nick (or (plist-get (cdr c) :nick) rcirc-default-nick))
477 (port (or (plist-get (cdr c) :port) rcirc-default-port))
478 (user-name (or (plist-get (cdr c) :user-name)
479 rcirc-default-user-name))
480 (full-name (or (plist-get (cdr c) :full-name)
481 rcirc-default-full-name))
482 (channels (plist-get (cdr c) :channels))
483 (password (plist-get (cdr c) :password))
484 (encryption (plist-get (cdr c) :encryption))
485 contact)
486 (when server
487 (let (connected)
488 (dolist (p (rcirc-process-list))
489 (when (string= server (process-name p))
490 (setq connected p)))
491 (if (not connected)
492 (condition-case nil
493 (rcirc-connect server port nick user-name
494 full-name channels password encryption)
495 (quit (message "Quit connecting to %s" server)))
496 (with-current-buffer (process-buffer connected)
497 (setq contact (process-contact
498 (get-buffer-process (current-buffer)) :host))
499 (setq connected-servers
500 (cons (if (stringp contact) contact server)
501 connected-servers))))))))
502 (when connected-servers
503 (message "Already connected to %s"
504 (if (cdr connected-servers)
505 (concat (mapconcat 'identity (butlast connected-servers) ", ")
506 ", and "
507 (car (last connected-servers)))
508 (car connected-servers)))))))
510 ;;;###autoload
511 (defalias 'irc 'rcirc)
514 (defvar rcirc-process-output nil)
515 (defvar rcirc-topic nil)
516 (defvar rcirc-keepalive-timer nil)
517 (defvar rcirc-last-server-message-time nil)
518 (defvar rcirc-server nil) ; server provided by server
519 (defvar rcirc-server-name nil) ; server name given by 001 response
520 (defvar rcirc-timeout-timer nil)
521 (defvar rcirc-user-authenticated nil)
522 (defvar rcirc-user-disconnect nil)
523 (defvar rcirc-connecting nil)
524 (defvar rcirc-connection-info nil)
525 (defvar rcirc-process nil)
527 ;;;###autoload
528 (defun rcirc-connect (server &optional port nick user-name
529 full-name startup-channels password encryption)
530 (save-excursion
531 (message "Connecting to %s..." server)
532 (let* ((inhibit-eol-conversion)
533 (port-number (if port
534 (if (stringp port)
535 (string-to-number port)
536 port)
537 rcirc-default-port))
538 (nick (or nick rcirc-default-nick))
539 (user-name (or user-name rcirc-default-user-name))
540 (full-name (or full-name rcirc-default-full-name))
541 (startup-channels startup-channels)
542 (process (open-network-stream
543 server nil server port-number
544 :type (or encryption 'plain))))
545 ;; set up process
546 (set-process-coding-system process 'raw-text 'raw-text)
547 (switch-to-buffer (rcirc-generate-new-buffer-name process nil))
548 (set-process-buffer process (current-buffer))
549 (rcirc-mode process nil)
550 (set-process-sentinel process 'rcirc-sentinel)
551 (set-process-filter process 'rcirc-filter)
553 (setq-local rcirc-connection-info
554 (list server port nick user-name full-name startup-channels
555 password encryption))
556 (setq-local rcirc-process process)
557 (setq-local rcirc-server server)
558 (setq-local rcirc-server-name server) ; Update when we get 001 response.
559 (setq-local rcirc-buffer-alist nil)
560 (setq-local rcirc-nick-table (make-hash-table :test 'equal))
561 (setq-local rcirc-nick nick)
562 (setq-local rcirc-process-output nil)
563 (setq-local rcirc-startup-channels startup-channels)
564 (setq-local rcirc-last-server-message-time (current-time))
566 (setq-local rcirc-timeout-timer nil)
567 (setq-local rcirc-user-disconnect nil)
568 (setq-local rcirc-user-authenticated nil)
569 (setq-local rcirc-connecting t)
571 (add-hook 'auto-save-hook 'rcirc-log-write)
573 ;; identify
574 (unless (zerop (length password))
575 (rcirc-send-string process (concat "PASS " password)))
576 (rcirc-send-string process (concat "NICK " nick))
577 (rcirc-send-string process (concat "USER " user-name
578 " 0 * :" full-name))
580 ;; setup ping timer if necessary
581 (unless rcirc-keepalive-timer
582 (setq rcirc-keepalive-timer
583 (run-at-time 0 (/ rcirc-timeout-seconds 2) 'rcirc-keepalive)))
585 (message "Connecting to %s...done" server)
587 ;; return process object
588 process)))
590 (defmacro with-rcirc-process-buffer (process &rest body)
591 (declare (indent 1) (debug t))
592 `(with-current-buffer (process-buffer ,process)
593 ,@body))
595 (defmacro with-rcirc-server-buffer (&rest body)
596 (declare (indent 0) (debug t))
597 `(with-current-buffer rcirc-server-buffer
598 ,@body))
600 (defun rcirc-float-time ()
601 (if (featurep 'xemacs)
602 (time-to-seconds (current-time))
603 (float-time)))
605 (defun rcirc-prompt-for-encryption (server-plist)
606 "Prompt the user for the encryption method to use.
607 SERVER-PLIST is the property list for the server."
608 (let ((msg "Encryption (default %s): ")
609 (choices '("plain" "tls"))
610 (default (or (plist-get server-plist :encryption)
611 'plain)))
612 (intern
613 (completing-read (format msg default)
614 choices nil t nil nil (symbol-name default)))))
616 (defun rcirc-keepalive ()
617 "Send keep alive pings to active rcirc processes.
618 Kill processes that have not received a server message since the
619 last ping."
620 (if (rcirc-process-list)
621 (mapc (lambda (process)
622 (with-rcirc-process-buffer process
623 (when (not rcirc-connecting)
624 (rcirc-send-ctcp process
625 rcirc-nick
626 (format "KEEPALIVE %f"
627 (rcirc-float-time))))))
628 (rcirc-process-list))
629 ;; no processes, clean up timer
630 (when (timerp rcirc-keepalive-timer)
631 (cancel-timer rcirc-keepalive-timer))
632 (setq rcirc-keepalive-timer nil)))
634 (defun rcirc-handler-ctcp-KEEPALIVE (process _target _sender message)
635 (with-rcirc-process-buffer process
636 (setq header-line-format (format "%f" (- (rcirc-float-time)
637 (string-to-number message))))))
639 (defvar rcirc-debug-buffer "*rcirc debug*")
640 (defvar rcirc-debug-flag nil
641 "If non-nil, write information to `rcirc-debug-buffer'.")
642 (defun rcirc-debug (process text)
643 "Add an entry to the debug log including PROCESS and TEXT.
644 Debug text is written to `rcirc-debug-buffer' if `rcirc-debug-flag'
645 is non-nil."
646 (when rcirc-debug-flag
647 (with-current-buffer (get-buffer-create rcirc-debug-buffer)
648 (goto-char (point-max))
649 (insert (concat
651 (format-time-string "%Y-%m-%dT%T ") (process-name process)
652 "] "
653 text)))))
655 (define-obsolete-variable-alias 'rcirc-sentinel-hooks
656 'rcirc-sentinel-functions "24.3")
657 (defvar rcirc-sentinel-functions nil
658 "Hook functions called when the process sentinel is called.
659 Functions are called with PROCESS and SENTINEL arguments.")
661 (defcustom rcirc-reconnect-delay 0
662 "The minimum interval in seconds between reconnect attempts.
663 When 0, do not auto-reconnect."
664 :version "24.5"
665 :type 'integer
666 :group 'rcirc)
668 (defvar rcirc-last-connect-time nil
669 "The last time the buffer was connected.")
671 (defun rcirc-sentinel (process sentinel)
672 "Called when PROCESS receives SENTINEL."
673 (let ((sentinel (replace-regexp-in-string "\n" "" sentinel)))
674 (rcirc-debug process (format "SENTINEL: %S %S\n" process sentinel))
675 (with-rcirc-process-buffer process
676 (dolist (buffer (cons nil (mapcar 'cdr rcirc-buffer-alist)))
677 (with-current-buffer (or buffer (current-buffer))
678 (rcirc-print process "rcirc.el" "ERROR" rcirc-target
679 (format "%s: %s (%S)"
680 (process-name process)
681 sentinel
682 (process-status process)) (not rcirc-target))
683 (rcirc-disconnect-buffer)))
684 (when (and (string= sentinel "deleted")
685 (< 0 rcirc-reconnect-delay))
686 (let ((now (current-time)))
687 (when (or (null rcirc-last-connect-time)
688 (< rcirc-reconnect-delay
689 (float-time (time-subtract now rcirc-last-connect-time))))
690 (setq rcirc-last-connect-time now)
691 (rcirc-cmd-reconnect nil))))
692 (run-hook-with-args 'rcirc-sentinel-functions process sentinel))))
694 (defun rcirc-disconnect-buffer (&optional buffer)
695 (with-current-buffer (or buffer (current-buffer))
696 ;; set rcirc-target to nil for each channel so cleanup
697 ;; doesn't happen when we reconnect
698 (setq rcirc-target nil)
699 (setq mode-line-process ":disconnected")))
701 (defun rcirc-process-list ()
702 "Return a list of rcirc processes."
703 (let (ps)
704 (mapc (lambda (p)
705 (when (buffer-live-p (process-buffer p))
706 (with-rcirc-process-buffer p
707 (when (eq major-mode 'rcirc-mode)
708 (setq ps (cons p ps))))))
709 (process-list))
710 ps))
712 (define-obsolete-variable-alias 'rcirc-receive-message-hooks
713 'rcirc-receive-message-functions "24.3")
714 (defvar rcirc-receive-message-functions nil
715 "Hook functions run when a message is received from server.
716 Function is called with PROCESS, COMMAND, SENDER, ARGS and LINE.")
717 (defun rcirc-filter (process output)
718 "Called when PROCESS receives OUTPUT."
719 (rcirc-debug process output)
720 (rcirc-reschedule-timeout process)
721 (with-rcirc-process-buffer process
722 (setq rcirc-last-server-message-time (current-time))
723 (setq rcirc-process-output (concat rcirc-process-output output))
724 (when (= (aref rcirc-process-output
725 (1- (length rcirc-process-output))) ?\n)
726 (mapc (lambda (line)
727 (rcirc-process-server-response process line))
728 (split-string rcirc-process-output "[\n\r]" t))
729 (setq rcirc-process-output nil))))
731 (defun rcirc-reschedule-timeout (process)
732 (with-rcirc-process-buffer process
733 (when (not rcirc-connecting)
734 (with-rcirc-process-buffer process
735 (when rcirc-timeout-timer (cancel-timer rcirc-timeout-timer))
736 (setq rcirc-timeout-timer (run-at-time rcirc-timeout-seconds nil
737 'rcirc-delete-process
738 process))))))
740 (defun rcirc-delete-process (process)
741 (delete-process process))
743 (defvar rcirc-trap-errors-flag t)
744 (defun rcirc-process-server-response (process text)
745 (if rcirc-trap-errors-flag
746 (condition-case err
747 (rcirc-process-server-response-1 process text)
748 (error
749 (rcirc-print process "RCIRC" "ERROR" nil
750 (format "\"%s\" %s" text err) t)))
751 (rcirc-process-server-response-1 process text)))
753 (defun rcirc-process-server-response-1 (process text)
754 (if (string-match "^\\(:\\([^ ]+\\) \\)?\\([^ ]+\\) \\(.+\\)$" text)
755 (let* ((user (match-string 2 text))
756 (sender (rcirc-user-nick user))
757 (cmd (match-string 3 text))
758 (args (match-string 4 text))
759 (handler (intern-soft (concat "rcirc-handler-" cmd))))
760 (string-match "^\\([^:]*\\):?\\(.+\\)?$" args)
761 (let* ((args1 (match-string 1 args))
762 (args2 (match-string 2 args))
763 (args (delq nil (append (split-string args1 " " t)
764 (list args2)))))
765 (if (not (fboundp handler))
766 (rcirc-handler-generic process cmd sender args text)
767 (funcall handler process sender args text))
768 (run-hook-with-args 'rcirc-receive-message-functions
769 process cmd sender args text)))
770 (message "UNHANDLED: %s" text)))
772 (defvar rcirc-responses-no-activity '("305" "306")
773 "Responses that don't trigger activity in the mode-line indicator.")
775 (defun rcirc-handler-generic (process response sender args _text)
776 "Generic server response handler."
777 (rcirc-print process sender response nil
778 (mapconcat 'identity (cdr args) " ")
779 (not (member response rcirc-responses-no-activity))))
781 (defun rcirc--connection-open-p (process)
782 (memq (process-status process) '(run open)))
784 (defun rcirc-send-string (process string)
785 "Send PROCESS a STRING plus a newline."
786 (let ((string (concat (encode-coding-string string rcirc-encode-coding-system)
787 "\n")))
788 (unless (rcirc--connection-open-p process)
789 (error "Network connection to %s is not open"
790 (process-name process)))
791 (rcirc-debug process string)
792 (process-send-string process string)))
794 (defun rcirc-send-privmsg (process target string)
795 (rcirc-send-string process (format "PRIVMSG %s :%s" target string)))
797 (defun rcirc-send-ctcp (process target request &optional args)
798 (let ((args (if args (concat " " args) "")))
799 (rcirc-send-privmsg process target
800 (format "\C-a%s%s\C-a" request args))))
802 (defun rcirc-buffer-process (&optional buffer)
803 "Return the process associated with channel BUFFER.
804 With no argument or nil as argument, use the current buffer."
805 (let ((buffer (or buffer (if (buffer-live-p rcirc-server-buffer)
806 rcirc-server-buffer
807 (error "Server buffer deleted")))))
808 (or (with-current-buffer buffer rcirc-process)
809 rcirc-process)))
811 (defun rcirc-server-name (process)
812 "Return PROCESS server name, given by the 001 response."
813 (with-rcirc-process-buffer process
814 (or rcirc-server-name
815 (warn "server name for process %S unknown" process))))
817 (defun rcirc-nick (process)
818 "Return PROCESS nick."
819 (with-rcirc-process-buffer process
820 (or rcirc-nick rcirc-default-nick)))
822 (defun rcirc-buffer-nick (&optional buffer)
823 "Return the nick associated with BUFFER.
824 With no argument or nil as argument, use the current buffer."
825 (with-current-buffer (or buffer (current-buffer))
826 (with-current-buffer rcirc-server-buffer
827 (or rcirc-nick rcirc-default-nick))))
829 (defvar rcirc-max-message-length 420
830 "Messages longer than this value will be split.")
832 (defun rcirc-split-message (message)
833 "Split MESSAGE into chunks within `rcirc-max-message-length'."
834 ;; `rcirc-encode-coding-system' can have buffer-local value.
835 (let ((encoding rcirc-encode-coding-system))
836 (with-temp-buffer
837 (insert message)
838 (goto-char (point-min))
839 (let (result)
840 (while (not (eobp))
841 (goto-char (or (byte-to-position rcirc-max-message-length)
842 (point-max)))
843 ;; max message length is 512 including CRLF
844 (while (and (not (bobp))
845 (> (length (encode-coding-region
846 (point-min) (point) encoding t))
847 rcirc-max-message-length))
848 (forward-char -1))
849 (push (delete-and-extract-region (point-min) (point)) result))
850 (nreverse result)))))
852 (defun rcirc-send-message (process target message &optional noticep silent)
853 "Send TARGET associated with PROCESS a privmsg with text MESSAGE.
854 If NOTICEP is non-nil, send a notice instead of privmsg.
855 If SILENT is non-nil, do not print the message in any irc buffer."
856 (let ((response (if noticep "NOTICE" "PRIVMSG")))
857 (rcirc-get-buffer-create process target)
858 (dolist (msg (rcirc-split-message message))
859 (rcirc-send-string process (concat response " " target " :" msg))
860 (unless silent
861 (rcirc-print process (rcirc-nick process) response target msg)))))
863 (defvar rcirc-input-ring nil)
864 (defvar rcirc-input-ring-index 0)
866 (defun rcirc-prev-input-string (arg)
867 (ring-ref rcirc-input-ring (+ rcirc-input-ring-index arg)))
869 (defun rcirc-insert-prev-input ()
870 (interactive)
871 (when (<= rcirc-prompt-end-marker (point))
872 (delete-region rcirc-prompt-end-marker (point-max))
873 (insert (rcirc-prev-input-string 0))
874 (setq rcirc-input-ring-index (1+ rcirc-input-ring-index))))
876 (defun rcirc-insert-next-input ()
877 (interactive)
878 (when (<= rcirc-prompt-end-marker (point))
879 (delete-region rcirc-prompt-end-marker (point-max))
880 (setq rcirc-input-ring-index (1- rcirc-input-ring-index))
881 (insert (rcirc-prev-input-string -1))))
883 (defvar rcirc-server-commands
884 '("/admin" "/away" "/connect" "/die" "/error" "/info"
885 "/invite" "/ison" "/join" "/kick" "/kill" "/links"
886 "/list" "/lusers" "/mode" "/motd" "/names" "/nick"
887 "/notice" "/oper" "/part" "/pass" "/ping" "/pong"
888 "/privmsg" "/quit" "/rehash" "/restart" "/service" "/servlist"
889 "/server" "/squery" "/squit" "/stats" "/summon" "/time"
890 "/topic" "/trace" "/user" "/userhost" "/users" "/version"
891 "/wallops" "/who" "/whois" "/whowas")
892 "A list of user commands by IRC server.
893 The value defaults to RFCs 1459 and 2812.")
895 ;; /me and /ctcp are not defined by `defun-rcirc-command'.
896 (defvar rcirc-client-commands '("/me" "/ctcp")
897 "A list of user commands defined by IRC client rcirc.
898 The list is updated automatically by `defun-rcirc-command'.")
900 (defun rcirc-completion-at-point ()
901 "Function used for `completion-at-point-functions' in `rcirc-mode'."
902 (and (rcirc-looking-at-input)
903 (let* ((beg (save-excursion
904 (if (re-search-backward " " rcirc-prompt-end-marker t)
905 (1+ (point))
906 rcirc-prompt-end-marker)))
907 (table (if (and (= beg rcirc-prompt-end-marker)
908 (eq (char-after beg) ?/))
909 (delete-dups
910 (nconc (sort (copy-sequence rcirc-client-commands)
911 'string-lessp)
912 (sort (copy-sequence rcirc-server-commands)
913 'string-lessp)))
914 (rcirc-channel-nicks (rcirc-buffer-process)
915 rcirc-target))))
916 (list beg (point) table))))
918 (defvar rcirc-completions nil)
919 (defvar rcirc-completion-start nil)
921 (defun rcirc-complete ()
922 "Cycle through completions from list of nicks in channel or IRC commands.
923 IRC command completion is performed only if '/' is the first input char."
924 (interactive)
925 (unless (rcirc-looking-at-input)
926 (error "Point not located after rcirc prompt"))
927 (if (eq last-command this-command)
928 (setq rcirc-completions
929 (append (cdr rcirc-completions) (list (car rcirc-completions))))
930 (let ((completion-ignore-case t)
931 (table (rcirc-completion-at-point)))
932 (setq rcirc-completion-start (car table))
933 (setq rcirc-completions
934 (and rcirc-completion-start
935 (all-completions (buffer-substring rcirc-completion-start
936 (cadr table))
937 (nth 2 table))))))
938 (let ((completion (car rcirc-completions)))
939 (when completion
940 (delete-region rcirc-completion-start (point))
941 (insert
942 (cond
943 ((= (aref completion 0) ?/) (concat completion " "))
944 ((= rcirc-completion-start rcirc-prompt-end-marker)
945 (format rcirc-nick-completion-format completion))
946 (t completion))))))
948 (defun set-rcirc-decode-coding-system (coding-system)
949 "Set the decode coding system used in this channel."
950 (interactive "zCoding system for incoming messages: ")
951 (setq-local rcirc-decode-coding-system coding-system))
953 (defun set-rcirc-encode-coding-system (coding-system)
954 "Set the encode coding system used in this channel."
955 (interactive "zCoding system for outgoing messages: ")
956 (setq-local rcirc-encode-coding-system coding-system))
958 (defvar rcirc-mode-map
959 (let ((map (make-sparse-keymap)))
960 (define-key map (kbd "RET") 'rcirc-send-input)
961 (define-key map (kbd "M-p") 'rcirc-insert-prev-input)
962 (define-key map (kbd "M-n") 'rcirc-insert-next-input)
963 (define-key map (kbd "TAB") 'rcirc-complete)
964 (define-key map (kbd "C-c C-b") 'rcirc-browse-url)
965 (define-key map (kbd "C-c C-c") 'rcirc-edit-multiline)
966 (define-key map (kbd "C-c C-j") 'rcirc-cmd-join)
967 (define-key map (kbd "C-c C-k") 'rcirc-cmd-kick)
968 (define-key map (kbd "C-c C-l") 'rcirc-toggle-low-priority)
969 (define-key map (kbd "C-c C-d") 'rcirc-cmd-mode)
970 (define-key map (kbd "C-c C-m") 'rcirc-cmd-msg)
971 (define-key map (kbd "C-c C-r") 'rcirc-cmd-nick) ; rename
972 (define-key map (kbd "C-c C-o") 'rcirc-omit-mode)
973 (define-key map (kbd "C-c C-p") 'rcirc-cmd-part)
974 (define-key map (kbd "C-c C-q") 'rcirc-cmd-query)
975 (define-key map (kbd "C-c C-t") 'rcirc-cmd-topic)
976 (define-key map (kbd "C-c C-n") 'rcirc-cmd-names)
977 (define-key map (kbd "C-c C-w") 'rcirc-cmd-whois)
978 (define-key map (kbd "C-c C-x") 'rcirc-cmd-quit)
979 (define-key map (kbd "C-c TAB") ; C-i
980 'rcirc-toggle-ignore-buffer-activity)
981 (define-key map (kbd "C-c C-s") 'rcirc-switch-to-server-buffer)
982 (define-key map (kbd "C-c C-a") 'rcirc-jump-to-first-unread-line)
983 map)
984 "Keymap for rcirc mode.")
986 (defvar rcirc-short-buffer-name nil
987 "Generated abbreviation to use to indicate buffer activity.")
989 (defvar rcirc-mode-hook nil
990 "Hook run when setting up rcirc buffer.")
992 (defvar rcirc-last-post-time nil)
994 (defvar rcirc-log-alist nil
995 "Alist of lines to log to disk when `rcirc-log-flag' is non-nil.
996 Each element looks like (FILENAME . TEXT).")
998 (defvar rcirc-current-line 0
999 "The current number of responses printed in this channel.
1000 This number is independent of the number of lines in the buffer.")
1002 (defun rcirc-mode (process target)
1003 ;; FIXME: Use define-derived-mode.
1004 "Major mode for IRC channel buffers.
1006 \\{rcirc-mode-map}"
1007 (kill-all-local-variables)
1008 (use-local-map rcirc-mode-map)
1009 (setq mode-name "rcirc")
1010 (setq major-mode 'rcirc-mode)
1011 (setq mode-line-process nil)
1013 (setq-local rcirc-input-ring
1014 ;; If rcirc-input-ring is already a ring with desired
1015 ;; size do not re-initialize.
1016 (if (and (ring-p rcirc-input-ring)
1017 (= (ring-size rcirc-input-ring)
1018 rcirc-input-ring-size))
1019 rcirc-input-ring
1020 (make-ring rcirc-input-ring-size)))
1021 (setq-local rcirc-server-buffer (process-buffer process))
1022 (setq-local rcirc-target target)
1023 (setq-local rcirc-topic nil)
1024 (setq-local rcirc-last-post-time (current-time))
1025 (setq-local fill-paragraph-function 'rcirc-fill-paragraph)
1026 (setq-local rcirc-recent-quit-alist nil)
1027 (setq-local rcirc-current-line 0)
1028 (setq-local rcirc-last-connect-time (current-time))
1030 (use-hard-newlines t)
1031 (setq-local rcirc-short-buffer-name nil)
1032 (setq-local rcirc-urls nil)
1034 ;; setup for omitting responses
1035 (setq buffer-invisibility-spec '())
1036 (setq buffer-display-table (make-display-table))
1037 (set-display-table-slot buffer-display-table 4
1038 (let ((glyph (make-glyph-code
1039 ?. 'font-lock-keyword-face)))
1040 (make-vector 3 glyph)))
1042 (dolist (i rcirc-coding-system-alist)
1043 (let ((chan (if (consp (car i)) (caar i) (car i)))
1044 (serv (if (consp (car i)) (cdar i) "")))
1045 (when (and (string-match chan (or target ""))
1046 (string-match serv (rcirc-server-name process)))
1047 (setq-local rcirc-decode-coding-system
1048 (if (consp (cdr i)) (cadr i) (cdr i)))
1049 (setq-local rcirc-encode-coding-system
1050 (if (consp (cdr i)) (cddr i) (cdr i))))))
1052 ;; setup the prompt and markers
1053 (setq-local rcirc-prompt-start-marker (point-max-marker))
1054 (setq-local rcirc-prompt-end-marker (point-max-marker))
1055 (rcirc-update-prompt)
1056 (goto-char rcirc-prompt-end-marker)
1058 (setq-local overlay-arrow-position (make-marker))
1060 ;; if the user changes the major mode or kills the buffer, there is
1061 ;; cleanup work to do
1062 (add-hook 'change-major-mode-hook 'rcirc-change-major-mode-hook nil t)
1063 (add-hook 'kill-buffer-hook 'rcirc-kill-buffer-hook nil t)
1065 ;; add to buffer list, and update buffer abbrevs
1066 (when target ; skip server buffer
1067 (let ((buffer (current-buffer)))
1068 (with-rcirc-process-buffer process
1069 (setq rcirc-buffer-alist (cons (cons target buffer)
1070 rcirc-buffer-alist))))
1071 (rcirc-update-short-buffer-names))
1073 (add-hook 'completion-at-point-functions
1074 'rcirc-completion-at-point nil 'local)
1076 (run-mode-hooks 'rcirc-mode-hook))
1078 (defun rcirc-update-prompt (&optional all)
1079 "Reset the prompt string in the current buffer.
1081 If ALL is non-nil, update prompts in all IRC buffers."
1082 (if all
1083 (mapc (lambda (process)
1084 (mapc (lambda (buffer)
1085 (with-current-buffer buffer
1086 (rcirc-update-prompt)))
1087 (with-rcirc-process-buffer process
1088 (mapcar 'cdr rcirc-buffer-alist))))
1089 (rcirc-process-list))
1090 (let ((inhibit-read-only t)
1091 (prompt (or rcirc-prompt "")))
1092 (mapc (lambda (rep)
1093 (setq prompt
1094 (replace-regexp-in-string (car rep) (cdr rep) prompt)))
1095 (list (cons "%n" (rcirc-buffer-nick))
1096 (cons "%s" (with-rcirc-server-buffer rcirc-server-name))
1097 (cons "%t" (or rcirc-target ""))))
1098 (save-excursion
1099 (delete-region rcirc-prompt-start-marker rcirc-prompt-end-marker)
1100 (goto-char rcirc-prompt-start-marker)
1101 (let ((start (point)))
1102 (insert-before-markers prompt)
1103 (set-marker rcirc-prompt-start-marker start)
1104 (when (not (zerop (- rcirc-prompt-end-marker
1105 rcirc-prompt-start-marker)))
1106 (add-text-properties rcirc-prompt-start-marker
1107 rcirc-prompt-end-marker
1108 (list 'face 'rcirc-prompt
1109 'read-only t 'field t
1110 'front-sticky t 'rear-nonsticky t))))))))
1112 (defun rcirc-set-changed (option value)
1113 "Set OPTION to VALUE and do updates after a customization change."
1114 (set-default option value)
1115 (cond ((eq option 'rcirc-prompt)
1116 (rcirc-update-prompt 'all))
1118 (error "Bad option %s" option))))
1120 (defun rcirc-channel-p (target)
1121 "Return t if TARGET is a channel name."
1122 (and target
1123 (not (zerop (length target)))
1124 (or (eq (aref target 0) ?#)
1125 (eq (aref target 0) ?&))))
1127 (defcustom rcirc-log-directory "~/.emacs.d/rcirc-log"
1128 "Directory to keep IRC logfiles."
1129 :type 'directory
1130 :group 'rcirc)
1132 (defcustom rcirc-log-flag nil
1133 "Non-nil means log IRC activity to disk.
1134 Logfiles are kept in `rcirc-log-directory'."
1135 :type 'boolean
1136 :group 'rcirc)
1138 (defun rcirc-kill-buffer-hook ()
1139 "Part the channel when killing an rcirc buffer.
1141 If `rcirc-kill-channel-buffers' is non-nil and the killed buffer
1142 is a server buffer, kills all of the channel buffers associated
1143 with it."
1144 (when (eq major-mode 'rcirc-mode)
1145 (when (and rcirc-log-flag
1146 rcirc-log-directory)
1147 (rcirc-log-write))
1148 (rcirc-clean-up-buffer "Killed buffer")
1149 (when (and rcirc-buffer-alist ;; it's a server buffer
1150 rcirc-kill-channel-buffers)
1151 (dolist (channel rcirc-buffer-alist)
1152 (kill-buffer (cdr channel))))))
1154 (defun rcirc-change-major-mode-hook ()
1155 "Part the channel when changing the major-mode."
1156 (rcirc-clean-up-buffer "Changed major mode"))
1158 (defun rcirc-clean-up-buffer (reason)
1159 (let ((buffer (current-buffer)))
1160 (rcirc-clear-activity buffer)
1161 (when (and (rcirc-buffer-process)
1162 (rcirc--connection-open-p (rcirc-buffer-process)))
1163 (with-rcirc-server-buffer
1164 (setq rcirc-buffer-alist
1165 (rassq-delete-all buffer rcirc-buffer-alist)))
1166 (rcirc-update-short-buffer-names)
1167 (if (rcirc-channel-p rcirc-target)
1168 (rcirc-send-string (rcirc-buffer-process)
1169 (concat "PART " rcirc-target " :" reason))
1170 (when rcirc-target
1171 (rcirc-remove-nick-channel (rcirc-buffer-process)
1172 (rcirc-buffer-nick)
1173 rcirc-target))))
1174 (setq rcirc-target nil)))
1176 (defun rcirc-generate-new-buffer-name (process target)
1177 "Return a buffer name based on PROCESS and TARGET.
1178 This is used for the initial name given to IRC buffers."
1179 (substring-no-properties
1180 (if target
1181 (concat target "@" (process-name process))
1182 (concat "*" (process-name process) "*"))))
1184 (defun rcirc-get-buffer (process target &optional server)
1185 "Return the buffer associated with the PROCESS and TARGET.
1187 If optional argument SERVER is non-nil, return the server buffer
1188 if there is no existing buffer for TARGET, otherwise return nil."
1189 (with-rcirc-process-buffer process
1190 (if (null target)
1191 (current-buffer)
1192 (let ((buffer (cdr (assoc-string target rcirc-buffer-alist t))))
1193 (or buffer (when server (current-buffer)))))))
1195 (defun rcirc-get-buffer-create (process target)
1196 "Return the buffer associated with the PROCESS and TARGET.
1197 Create the buffer if it doesn't exist."
1198 (let ((buffer (rcirc-get-buffer process target)))
1199 (if (and buffer (buffer-live-p buffer))
1200 (with-current-buffer buffer
1201 (when (not rcirc-target)
1202 (setq rcirc-target target))
1203 buffer)
1204 ;; create the buffer
1205 (with-rcirc-process-buffer process
1206 (let ((new-buffer (get-buffer-create
1207 (rcirc-generate-new-buffer-name process target))))
1208 (with-current-buffer new-buffer
1209 (rcirc-mode process target)
1210 (rcirc-put-nick-channel process (rcirc-nick process) target
1211 rcirc-current-line))
1212 new-buffer)))))
1214 (defun rcirc-send-input ()
1215 "Send input to target associated with the current buffer."
1216 (interactive)
1217 (if (< (point) rcirc-prompt-end-marker)
1218 ;; copy the line down to the input area
1219 (progn
1220 (forward-line 0)
1221 (let ((start (if (eq (point) (point-min))
1222 (point)
1223 (if (get-text-property (1- (point)) 'hard)
1224 (point)
1225 (previous-single-property-change (point) 'hard))))
1226 (end (next-single-property-change (1+ (point)) 'hard)))
1227 (goto-char (point-max))
1228 (insert (replace-regexp-in-string
1229 "\n\\s-+" " "
1230 (buffer-substring-no-properties start end)))))
1231 ;; process input
1232 (goto-char (point-max))
1233 (when (not (equal 0 (- (point) rcirc-prompt-end-marker)))
1234 ;; delete a trailing newline
1235 (when (eq (point) (point-at-bol))
1236 (delete-char -1))
1237 (let ((input (buffer-substring-no-properties
1238 rcirc-prompt-end-marker (point))))
1239 (dolist (line (split-string input "\n"))
1240 (rcirc-process-input-line line))
1241 ;; add to input-ring
1242 (save-excursion
1243 (ring-insert rcirc-input-ring input)
1244 (setq rcirc-input-ring-index 0))))))
1246 (defun rcirc-fill-paragraph (&optional justify)
1247 (interactive "P")
1248 (when (> (point) rcirc-prompt-end-marker)
1249 (save-restriction
1250 (narrow-to-region rcirc-prompt-end-marker (point-max))
1251 (let ((fill-column rcirc-max-message-length))
1252 (fill-region (point-min) (point-max) justify)))))
1254 (defun rcirc-process-input-line (line)
1255 (if (string-match "^/\\([^ ]+\\) ?\\(.*\\)$" line)
1256 (rcirc-process-command (match-string 1 line)
1257 (match-string 2 line)
1258 line)
1259 (rcirc-process-message line)))
1261 (defun rcirc-process-message (line)
1262 (if (not rcirc-target)
1263 (message "Not joined (no target)")
1264 (delete-region rcirc-prompt-end-marker (point))
1265 (rcirc-send-message (rcirc-buffer-process) rcirc-target line)
1266 (setq rcirc-last-post-time (current-time))))
1268 (defun rcirc-process-command (command args line)
1269 (if (eq (aref command 0) ?/)
1270 ;; "//text" will send "/text" as a message
1271 (rcirc-process-message (substring line 1))
1272 (let ((fun (intern-soft (concat "rcirc-cmd-" command)))
1273 (process (rcirc-buffer-process)))
1274 (newline)
1275 (with-current-buffer (current-buffer)
1276 (delete-region rcirc-prompt-end-marker (point))
1277 (if (string= command "me")
1278 (rcirc-print process (rcirc-buffer-nick)
1279 "ACTION" rcirc-target args)
1280 (rcirc-print process (rcirc-buffer-nick)
1281 "COMMAND" rcirc-target line))
1282 (set-marker rcirc-prompt-end-marker (point))
1283 (if (fboundp fun)
1284 (funcall fun args process rcirc-target)
1285 (rcirc-send-string process
1286 (concat command " :" args)))))))
1288 (defvar rcirc-parent-buffer nil)
1289 (make-variable-buffer-local 'rcirc-parent-buffer)
1290 (put 'rcirc-parent-buffer 'permanent-local t)
1291 (defvar rcirc-window-configuration nil)
1292 (defun rcirc-edit-multiline ()
1293 "Move current edit to a dedicated buffer."
1294 (interactive)
1295 (let ((pos (1+ (- (point) rcirc-prompt-end-marker))))
1296 (goto-char (point-max))
1297 (let ((text (buffer-substring-no-properties rcirc-prompt-end-marker
1298 (point)))
1299 (parent (buffer-name)))
1300 (delete-region rcirc-prompt-end-marker (point))
1301 (setq rcirc-window-configuration (current-window-configuration))
1302 (pop-to-buffer (concat "*multiline " parent "*"))
1303 (funcall rcirc-multiline-major-mode)
1304 (rcirc-multiline-minor-mode 1)
1305 (setq rcirc-parent-buffer parent)
1306 (insert text)
1307 (and (> pos 0) (goto-char pos))
1308 (message "Type C-c C-c to return text to %s, or C-c C-k to cancel" parent))))
1310 (defvar rcirc-multiline-minor-mode-map
1311 (let ((map (make-sparse-keymap)))
1312 (define-key map (kbd "C-c C-c") 'rcirc-multiline-minor-submit)
1313 (define-key map (kbd "C-x C-s") 'rcirc-multiline-minor-submit)
1314 (define-key map (kbd "C-c C-k") 'rcirc-multiline-minor-cancel)
1315 (define-key map (kbd "ESC ESC ESC") 'rcirc-multiline-minor-cancel)
1316 map)
1317 "Keymap for multiline mode in rcirc.")
1319 (define-minor-mode rcirc-multiline-minor-mode
1320 "Minor mode for editing multiple lines in rcirc.
1321 With a prefix argument ARG, enable the mode if ARG is positive,
1322 and disable it otherwise. If called from Lisp, enable the mode
1323 if ARG is omitted or nil."
1324 :init-value nil
1325 :lighter " rcirc-mline"
1326 :keymap rcirc-multiline-minor-mode-map
1327 :global nil
1328 :group 'rcirc
1329 (setq fill-column rcirc-max-message-length))
1331 (defun rcirc-multiline-minor-submit ()
1332 "Send the text in buffer back to parent buffer."
1333 (interactive)
1334 (untabify (point-min) (point-max))
1335 (let ((text (buffer-substring (point-min) (point-max)))
1336 (buffer (current-buffer))
1337 (pos (point)))
1338 (set-buffer rcirc-parent-buffer)
1339 (goto-char (point-max))
1340 (insert text)
1341 (kill-buffer buffer)
1342 (set-window-configuration rcirc-window-configuration)
1343 (goto-char (+ rcirc-prompt-end-marker (1- pos)))))
1345 (defun rcirc-multiline-minor-cancel ()
1346 "Cancel the multiline edit."
1347 (interactive)
1348 (kill-buffer (current-buffer))
1349 (set-window-configuration rcirc-window-configuration))
1351 (defun rcirc-any-buffer (process)
1352 "Return a buffer for PROCESS, either the one selected or the process buffer."
1353 (if rcirc-always-use-server-buffer-flag
1354 (process-buffer process)
1355 (let ((buffer (window-buffer)))
1356 (if (and buffer
1357 (with-current-buffer buffer
1358 (and (eq major-mode 'rcirc-mode)
1359 (eq (rcirc-buffer-process) process))))
1360 buffer
1361 (process-buffer process)))))
1363 (defcustom rcirc-response-formats
1364 '(("PRIVMSG" . "<%N> %m")
1365 ("NOTICE" . "-%N- %m")
1366 ("ACTION" . "[%N %m]")
1367 ("COMMAND" . "%m")
1368 ("ERROR" . "%fw!!! %m")
1369 (t . "%fp*** %fs%n %r %m"))
1370 "An alist of formats used for printing responses.
1371 The format is looked up using the response-type as a key;
1372 if no match is found, the default entry (with a key of `t') is used.
1374 The entry's value part should be a string, which is inserted with
1375 the of the following escape sequences replaced by the described values:
1377 %m The message text
1378 %n The sender's nick
1379 %N The sender's nick (with face `rcirc-my-nick' or `rcirc-other-nick')
1380 %r The response-type
1381 %t The target
1382 %fw Following text uses the face `font-lock-warning-face'
1383 %fp Following text uses the face `rcirc-server-prefix'
1384 %fs Following text uses the face `rcirc-server'
1385 %f[FACE] Following text uses the face FACE
1386 %f- Following text uses the default face
1387 %% A literal `%' character"
1388 :type '(alist :key-type (choice (string :tag "Type")
1389 (const :tag "Default" t))
1390 :value-type string)
1391 :group 'rcirc)
1393 (defcustom rcirc-omit-responses
1394 '("JOIN" "PART" "QUIT" "NICK")
1395 "Responses which will be hidden when `rcirc-omit-mode' is enabled."
1396 :type '(repeat string)
1397 :group 'rcirc)
1399 (defun rcirc-format-response-string (process sender response target text)
1400 "Return a nicely-formatted response string, incorporating TEXT
1401 \(and perhaps other arguments). The specific formatting used
1402 is found by looking up RESPONSE in `rcirc-response-formats'."
1403 (with-temp-buffer
1404 (insert (or (cdr (assoc response rcirc-response-formats))
1405 (cdr (assq t rcirc-response-formats))))
1406 (goto-char (point-min))
1407 (let ((start (point-min))
1408 (sender (if (or (not sender)
1409 (string= (rcirc-server-name process) sender))
1411 sender))
1412 face)
1413 (while (re-search-forward "%\\(\\(f\\(.\\)\\)\\|\\(.\\)\\)" nil t)
1414 (rcirc-add-face start (match-beginning 0) face)
1415 (setq start (match-beginning 0))
1416 (replace-match
1417 (cl-case (aref (match-string 1) 0)
1418 (?f (setq face
1419 (cl-case (string-to-char (match-string 3))
1420 (?w 'font-lock-warning-face)
1421 (?p 'rcirc-server-prefix)
1422 (?s 'rcirc-server)
1423 (t nil)))
1425 (?n sender)
1426 (?N (let ((my-nick (rcirc-nick process)))
1427 (save-match-data
1428 (with-syntax-table rcirc-nick-syntax-table
1429 (rcirc-facify sender
1430 (cond ((string= sender my-nick)
1431 'rcirc-my-nick)
1432 ((and rcirc-bright-nicks
1433 (string-match
1434 (regexp-opt rcirc-bright-nicks
1435 'words)
1436 sender))
1437 'rcirc-bright-nick)
1438 ((and rcirc-dim-nicks
1439 (string-match
1440 (regexp-opt rcirc-dim-nicks
1441 'words)
1442 sender))
1443 'rcirc-dim-nick)
1445 'rcirc-other-nick)))))))
1446 (?m (propertize text 'rcirc-text text))
1447 (?r response)
1448 (?t (or target ""))
1449 (t (concat "UNKNOWN CODE:" (match-string 0))))
1450 t t nil 0)
1451 (rcirc-add-face (match-beginning 0) (match-end 0) face))
1452 (rcirc-add-face start (match-beginning 0) face))
1453 (buffer-substring (point-min) (point-max))))
1455 (defun rcirc-target-buffer (process sender response target _text)
1456 "Return a buffer to print the server response."
1457 (cl-assert (not (bufferp target)))
1458 (with-rcirc-process-buffer process
1459 (cond ((not target)
1460 (rcirc-any-buffer process))
1461 ((not (rcirc-channel-p target))
1462 ;; message from another user
1463 (if (or (string= response "PRIVMSG")
1464 (string= response "ACTION"))
1465 (rcirc-get-buffer-create process (if (string= sender rcirc-nick)
1466 target
1467 sender))
1468 (rcirc-get-buffer process target t)))
1469 ((or (rcirc-get-buffer process target)
1470 (rcirc-any-buffer process))))))
1472 (defvar rcirc-activity-types nil)
1473 (make-variable-buffer-local 'rcirc-activity-types)
1474 (defvar rcirc-last-sender nil)
1475 (make-variable-buffer-local 'rcirc-last-sender)
1477 (defcustom rcirc-omit-threshold 100
1478 "Number of lines since last activity from a nick before `rcirc-omit-responses' are omitted."
1479 :type 'integer
1480 :group 'rcirc)
1482 (defcustom rcirc-log-process-buffers nil
1483 "Non-nil if rcirc process buffers should be logged to disk."
1484 :group 'rcirc
1485 :type 'boolean
1486 :version "24.1")
1488 (defun rcirc-last-quit-line (process nick target)
1489 "Return the line number where NICK left TARGET.
1490 Returns nil if the information is not recorded."
1491 (let ((chanbuf (rcirc-get-buffer process target)))
1492 (when chanbuf
1493 (cdr (assoc-string nick (with-current-buffer chanbuf
1494 rcirc-recent-quit-alist))))))
1496 (defun rcirc-last-line (process nick target)
1497 "Return the line from the last activity from NICK in TARGET."
1498 (let ((line (or (cdr (assoc-string target
1499 (gethash nick (with-rcirc-server-buffer
1500 rcirc-nick-table)) t))
1501 (rcirc-last-quit-line process nick target))))
1502 (if line
1503 line
1504 ;;(message "line is nil for %s in %s" nick target)
1505 nil)))
1507 (defun rcirc-elapsed-lines (process nick target)
1508 "Return the number of lines since activity from NICK in TARGET."
1509 (let ((last-activity-line (rcirc-last-line process nick target)))
1510 (when (and last-activity-line
1511 (> last-activity-line 0))
1512 (- rcirc-current-line last-activity-line))))
1514 (defvar rcirc-markup-text-functions
1515 '(rcirc-markup-attributes
1516 rcirc-markup-my-nick
1517 rcirc-markup-urls
1518 rcirc-markup-keywords
1519 rcirc-markup-bright-nicks)
1521 "List of functions used to manipulate text before it is printed.
1523 Each function takes two arguments, SENDER, and RESPONSE. The
1524 buffer is narrowed with the text to be printed and the point is
1525 at the beginning of the `rcirc-text' propertized text.")
1527 (defun rcirc-print (process sender response target text &optional activity)
1528 "Print TEXT in the buffer associated with TARGET.
1529 Format based on SENDER and RESPONSE. If ACTIVITY is non-nil,
1530 record activity."
1531 (or text (setq text ""))
1532 (unless (and (or (member sender rcirc-ignore-list)
1533 (member (with-syntax-table rcirc-nick-syntax-table
1534 (when (string-match "^\\([^/]\\w*\\)[:,]" text)
1535 (match-string 1 text)))
1536 rcirc-ignore-list))
1537 ;; do not ignore if we sent the message
1538 (not (string= sender (rcirc-nick process))))
1539 (let* ((buffer (rcirc-target-buffer process sender response target text))
1540 (inhibit-read-only t))
1541 (with-current-buffer buffer
1542 (let ((moving (= (point) rcirc-prompt-end-marker))
1543 (old-point (point-marker))
1544 (fill-start (marker-position rcirc-prompt-start-marker)))
1546 (setq text (decode-coding-string text rcirc-decode-coding-system))
1547 (unless (string= sender (rcirc-nick process))
1548 ;; mark the line with overlay arrow
1549 (unless (or (marker-position overlay-arrow-position)
1550 (get-buffer-window (current-buffer))
1551 (member response rcirc-omit-responses))
1552 (set-marker overlay-arrow-position
1553 (marker-position rcirc-prompt-start-marker))))
1555 ;; temporarily set the marker insertion-type because
1556 ;; insert-before-markers results in hidden text in new buffers
1557 (goto-char rcirc-prompt-start-marker)
1558 (set-marker-insertion-type rcirc-prompt-start-marker t)
1559 (set-marker-insertion-type rcirc-prompt-end-marker t)
1561 (let ((start (point)))
1562 (insert (rcirc-format-response-string process sender response nil
1563 text)
1564 (propertize "\n" 'hard t))
1566 ;; squeeze spaces out of text before rcirc-text
1567 (fill-region fill-start
1568 (1- (or (next-single-property-change fill-start
1569 'rcirc-text)
1570 rcirc-prompt-end-marker)))
1572 ;; run markup functions
1573 (save-excursion
1574 (save-restriction
1575 (narrow-to-region start rcirc-prompt-start-marker)
1576 (goto-char (or (next-single-property-change start 'rcirc-text)
1577 (point)))
1578 (when (rcirc-buffer-process)
1579 (save-excursion (rcirc-markup-timestamp sender response))
1580 (dolist (fn rcirc-markup-text-functions)
1581 (save-excursion (funcall fn sender response)))
1582 (when rcirc-fill-flag
1583 (save-excursion (rcirc-markup-fill sender response))))
1585 (when rcirc-read-only-flag
1586 (add-text-properties (point-min) (point-max)
1587 '(read-only t front-sticky t))))
1588 ;; make text omittable
1589 (let ((last-activity-lines (rcirc-elapsed-lines process sender target)))
1590 (if (and (not (string= (rcirc-nick process) sender))
1591 (member response rcirc-omit-responses)
1592 (or (not last-activity-lines)
1593 (< rcirc-omit-threshold last-activity-lines)))
1594 (put-text-property (1- start) (1- rcirc-prompt-start-marker)
1595 'invisible 'rcirc-omit)
1596 ;; otherwise increment the line count
1597 (setq rcirc-current-line (1+ rcirc-current-line))))))
1599 (set-marker-insertion-type rcirc-prompt-start-marker nil)
1600 (set-marker-insertion-type rcirc-prompt-end-marker nil)
1602 ;; truncate buffer if it is very long
1603 (save-excursion
1604 (when (and rcirc-buffer-maximum-lines
1605 (> rcirc-buffer-maximum-lines 0)
1606 (= (forward-line (- rcirc-buffer-maximum-lines)) 0))
1607 (delete-region (point-min) (point))))
1609 ;; set the window point for buffers show in windows
1610 (walk-windows (lambda (w)
1611 (when (and (not (eq (selected-window) w))
1612 (eq (current-buffer)
1613 (window-buffer w))
1614 (>= (window-point w)
1615 rcirc-prompt-end-marker))
1616 (set-window-point w (point-max))))
1617 nil t)
1619 ;; restore the point
1620 (goto-char (if moving rcirc-prompt-end-marker old-point))
1622 ;; keep window on bottom line if it was already there
1623 (when rcirc-scroll-show-maximum-output
1624 (let ((window (get-buffer-window)))
1625 (when window
1626 (with-selected-window window
1627 (when (eq major-mode 'rcirc-mode)
1628 (when (<= (- (window-height)
1629 (count-screen-lines (window-point)
1630 (window-start))
1633 (recenter -1)))))))
1635 ;; flush undo (can we do something smarter here?)
1636 (buffer-disable-undo)
1637 (buffer-enable-undo))
1639 ;; record mode line activity
1640 (when (and activity
1641 (not rcirc-ignore-buffer-activity-flag)
1642 (not (and rcirc-dim-nicks sender
1643 (string-match (regexp-opt rcirc-dim-nicks) sender)
1644 (rcirc-channel-p target))))
1645 (rcirc-record-activity (current-buffer)
1646 (when (not (rcirc-channel-p rcirc-target))
1647 'nick)))
1649 (when (and rcirc-log-flag
1650 (or target
1651 rcirc-log-process-buffers))
1652 (rcirc-log process sender response target text))
1654 (sit-for 0) ; displayed text before hook
1655 (run-hook-with-args 'rcirc-print-functions
1656 process sender response target text)))))
1658 (defun rcirc-generate-log-filename (process target)
1659 (if target
1660 (rcirc-generate-new-buffer-name process target)
1661 (process-name process)))
1663 (defcustom rcirc-log-filename-function 'rcirc-generate-log-filename
1664 "A function to generate the filename used by rcirc's logging facility.
1666 It is called with two arguments, PROCESS and TARGET (see
1667 `rcirc-generate-new-buffer-name' for their meaning), and should
1668 return the filename, or nil if no logging is desired for this
1669 session.
1671 If the returned filename is absolute (`file-name-absolute-p'
1672 returns t), then it is used as-is, otherwise the resulting file
1673 is put into `rcirc-log-directory'.
1675 The filename is then cleaned using `convert-standard-filename' to
1676 guarantee valid filenames for the current OS."
1677 :group 'rcirc
1678 :type 'function)
1680 (defun rcirc-log (process sender response target text)
1681 "Record line in `rcirc-log', to be later written to disk."
1682 (let ((filename (funcall rcirc-log-filename-function process target)))
1683 (unless (null filename)
1684 (let ((cell (assoc-string filename rcirc-log-alist))
1685 (line (concat (format-time-string rcirc-time-format)
1686 (substring-no-properties
1687 (rcirc-format-response-string process sender
1688 response target text))
1689 "\n")))
1690 (if cell
1691 (setcdr cell (concat (cdr cell) line))
1692 (setq rcirc-log-alist
1693 (cons (cons filename line) rcirc-log-alist)))))))
1695 (defun rcirc-log-write ()
1696 "Flush `rcirc-log-alist' data to disk.
1698 Log data is written to `rcirc-log-directory', except for
1699 log-files with absolute names (see `rcirc-log-filename-function')."
1700 (dolist (cell rcirc-log-alist)
1701 (let ((filename (convert-standard-filename
1702 (expand-file-name (car cell)
1703 rcirc-log-directory)))
1704 (coding-system-for-write 'utf-8))
1705 (make-directory (file-name-directory filename) t)
1706 (with-temp-buffer
1707 (insert (cdr cell))
1708 (write-region (point-min) (point-max) filename t 'quiet))))
1709 (setq rcirc-log-alist nil))
1711 (defun rcirc-view-log-file ()
1712 "View logfile corresponding to the current buffer."
1713 (interactive)
1714 (find-file-other-window
1715 (expand-file-name (funcall rcirc-log-filename-function
1716 (rcirc-buffer-process) rcirc-target)
1717 rcirc-log-directory)))
1719 (defun rcirc-join-channels (process channels)
1720 "Join CHANNELS."
1721 (save-window-excursion
1722 (dolist (channel channels)
1723 (with-rcirc-process-buffer process
1724 (rcirc-cmd-join channel process)))))
1726 ;;; nick management
1727 (defvar rcirc-nick-prefix-chars "~&@%+")
1728 (defun rcirc-user-nick (user)
1729 "Return the nick from USER. Remove any non-nick junk."
1730 (save-match-data
1731 (if (string-match (concat "^[" rcirc-nick-prefix-chars
1732 "]?\\([^! ]+\\)!?") (or user ""))
1733 (match-string 1 user)
1734 user)))
1736 (defun rcirc-nick-channels (process nick)
1737 "Return list of channels for NICK."
1738 (with-rcirc-process-buffer process
1739 (mapcar (lambda (x) (car x))
1740 (gethash nick rcirc-nick-table))))
1742 (defun rcirc-put-nick-channel (process nick channel &optional line)
1743 "Add CHANNEL to list associated with NICK.
1744 Update the associated linestamp if LINE is non-nil.
1746 If the record doesn't exist, and LINE is nil, set the linestamp
1747 to zero."
1748 (let ((nick (rcirc-user-nick nick)))
1749 (with-rcirc-process-buffer process
1750 (let* ((chans (gethash nick rcirc-nick-table))
1751 (record (assoc-string channel chans t)))
1752 (if record
1753 (when line (setcdr record line))
1754 (puthash nick (cons (cons channel (or line 0))
1755 chans)
1756 rcirc-nick-table))))))
1758 (defun rcirc-nick-remove (process nick)
1759 "Remove NICK from table."
1760 (with-rcirc-process-buffer process
1761 (remhash nick rcirc-nick-table)))
1763 (defun rcirc-remove-nick-channel (process nick channel)
1764 "Remove the CHANNEL from list associated with NICK."
1765 (with-rcirc-process-buffer process
1766 (let* ((chans (gethash nick rcirc-nick-table))
1767 (newchans
1768 ;; instead of assoc-string-delete-all:
1769 (let ((record (assoc-string channel chans t)))
1770 (when record
1771 (setcar record 'delete)
1772 (assq-delete-all 'delete chans)))))
1773 (if newchans
1774 (puthash nick newchans rcirc-nick-table)
1775 (remhash nick rcirc-nick-table)))))
1777 (defun rcirc-channel-nicks (process target)
1778 "Return the list of nicks associated with TARGET sorted by last activity."
1779 (when target
1780 (if (rcirc-channel-p target)
1781 (with-rcirc-process-buffer process
1782 (let (nicks)
1783 (maphash
1784 (lambda (k v)
1785 (let ((record (assoc-string target v t)))
1786 (if record
1787 (setq nicks (cons (cons k (cdr record)) nicks)))))
1788 rcirc-nick-table)
1789 (mapcar (lambda (x) (car x))
1790 (sort nicks (lambda (x y)
1791 (let ((lx (or (cdr x) 0))
1792 (ly (or (cdr y) 0)))
1793 (< ly lx)))))))
1794 (list target))))
1796 (defun rcirc-ignore-update-automatic (nick)
1797 "Remove NICK from `rcirc-ignore-list'
1798 if NICK is also on `rcirc-ignore-list-automatic'."
1799 (when (member nick rcirc-ignore-list-automatic)
1800 (setq rcirc-ignore-list-automatic
1801 (delete nick rcirc-ignore-list-automatic)
1802 rcirc-ignore-list
1803 (delete nick rcirc-ignore-list))))
1805 (defun rcirc-nickname< (s1 s2)
1806 "Return t if IRC nickname S1 is less than S2, and nil otherwise.
1807 Operator nicknames (@) are considered less than voiced
1808 nicknames (+). Any other nicknames are greater than voiced
1809 nicknames. The comparison is case-insensitive."
1810 (setq s1 (downcase s1)
1811 s2 (downcase s2))
1812 (let* ((s1-op (eq ?@ (string-to-char s1)))
1813 (s2-op (eq ?@ (string-to-char s2))))
1814 (if s1-op
1815 (if s2-op
1816 (string< (substring s1 1) (substring s2 1))
1818 (if s2-op
1820 (string< s1 s2)))))
1822 (defun rcirc-sort-nicknames-join (input sep)
1823 "Return a string of sorted nicknames.
1824 INPUT is a string containing nicknames separated by SEP.
1825 This function does not alter the INPUT string."
1826 (let* ((parts (split-string input sep t))
1827 (sorted (sort parts 'rcirc-nickname<)))
1828 (mapconcat 'identity sorted sep)))
1830 ;;; activity tracking
1831 (defvar rcirc-track-minor-mode-map
1832 (let ((map (make-sparse-keymap)))
1833 (define-key map (kbd "C-c C-@") 'rcirc-next-active-buffer)
1834 (define-key map (kbd "C-c C-SPC") 'rcirc-next-active-buffer)
1835 map)
1836 "Keymap for rcirc track minor mode.")
1838 ;;;###autoload
1839 (define-minor-mode rcirc-track-minor-mode
1840 "Global minor mode for tracking activity in rcirc buffers.
1841 With a prefix argument ARG, enable the mode if ARG is positive,
1842 and disable it otherwise. If called from Lisp, enable the mode
1843 if ARG is omitted or nil."
1844 :init-value nil
1845 :lighter ""
1846 :keymap rcirc-track-minor-mode-map
1847 :global t
1848 :group 'rcirc
1849 (or global-mode-string (setq global-mode-string '("")))
1850 ;; toggle the mode-line channel indicator
1851 (if rcirc-track-minor-mode
1852 (progn
1853 (and (not (memq 'rcirc-activity-string global-mode-string))
1854 (setq global-mode-string
1855 (append global-mode-string '(rcirc-activity-string))))
1856 (add-hook 'window-configuration-change-hook
1857 'rcirc-window-configuration-change))
1858 (setq global-mode-string
1859 (delete 'rcirc-activity-string global-mode-string))
1860 (remove-hook 'window-configuration-change-hook
1861 'rcirc-window-configuration-change)))
1863 (or (assq 'rcirc-ignore-buffer-activity-flag minor-mode-alist)
1864 (setq minor-mode-alist
1865 (cons '(rcirc-ignore-buffer-activity-flag " Ignore") minor-mode-alist)))
1866 (or (assq 'rcirc-low-priority-flag minor-mode-alist)
1867 (setq minor-mode-alist
1868 (cons '(rcirc-low-priority-flag " LowPri") minor-mode-alist)))
1869 (or (assq 'rcirc-omit-mode minor-mode-alist)
1870 (setq minor-mode-alist
1871 (cons '(rcirc-omit-mode " Omit") minor-mode-alist)))
1873 (defun rcirc-toggle-ignore-buffer-activity ()
1874 "Toggle the value of `rcirc-ignore-buffer-activity-flag'."
1875 (interactive)
1876 (setq rcirc-ignore-buffer-activity-flag
1877 (not rcirc-ignore-buffer-activity-flag))
1878 (message (if rcirc-ignore-buffer-activity-flag
1879 "Ignore activity in this buffer"
1880 "Notice activity in this buffer"))
1881 (force-mode-line-update))
1883 (defun rcirc-toggle-low-priority ()
1884 "Toggle the value of `rcirc-low-priority-flag'."
1885 (interactive)
1886 (setq rcirc-low-priority-flag
1887 (not rcirc-low-priority-flag))
1888 (message (if rcirc-low-priority-flag
1889 "Activity in this buffer is low priority"
1890 "Activity in this buffer is normal priority"))
1891 (force-mode-line-update))
1893 (defun rcirc-omit-mode ()
1894 "Toggle the Rcirc-Omit mode.
1895 If enabled, \"uninteresting\" lines are not shown.
1896 Uninteresting lines are those whose responses are listed in
1897 `rcirc-omit-responses'."
1898 (interactive)
1899 (setq rcirc-omit-mode (not rcirc-omit-mode))
1900 (if rcirc-omit-mode
1901 (progn
1902 (add-to-invisibility-spec '(rcirc-omit . nil))
1903 (message "Rcirc-Omit mode enabled"))
1904 (remove-from-invisibility-spec '(rcirc-omit . nil))
1905 (message "Rcirc-Omit mode disabled"))
1906 (dolist (window (get-buffer-window-list (current-buffer)))
1907 (with-selected-window window
1908 (recenter (when (> (point) rcirc-prompt-start-marker) -1)))))
1910 (defun rcirc-switch-to-server-buffer ()
1911 "Switch to the server buffer associated with current channel buffer."
1912 (interactive)
1913 (unless (buffer-live-p rcirc-server-buffer)
1914 (error "No such buffer"))
1915 (switch-to-buffer rcirc-server-buffer))
1917 (defun rcirc-jump-to-first-unread-line ()
1918 "Move the point to the first unread line in this buffer."
1919 (interactive)
1920 (if (marker-position overlay-arrow-position)
1921 (goto-char overlay-arrow-position)
1922 (message "No unread messages")))
1924 (defun rcirc-non-irc-buffer ()
1925 (let ((buflist (buffer-list))
1926 buffer)
1927 (while (and buflist (not buffer))
1928 (with-current-buffer (car buflist)
1929 (unless (or (eq major-mode 'rcirc-mode)
1930 (= ?\s (aref (buffer-name) 0)) ; internal buffers
1931 (get-buffer-window (current-buffer)))
1932 (setq buffer (current-buffer))))
1933 (setq buflist (cdr buflist)))
1934 buffer))
1936 (defun rcirc-next-active-buffer (arg)
1937 "Switch to the next rcirc buffer with activity.
1938 With prefix ARG, go to the next low priority buffer with activity."
1939 (interactive "P")
1940 (let* ((pair (rcirc-split-activity rcirc-activity))
1941 (lopri (car pair))
1942 (hipri (cdr pair)))
1943 (if (or (and (not arg) hipri)
1944 (and arg lopri))
1945 (progn
1946 (switch-to-buffer (car (if arg lopri hipri)))
1947 (when (> (point) rcirc-prompt-start-marker)
1948 (recenter -1)))
1949 (if (eq major-mode 'rcirc-mode)
1950 (switch-to-buffer (rcirc-non-irc-buffer))
1951 (message "%s" (concat
1952 "No IRC activity."
1953 (when lopri
1954 (concat
1955 " Type C-u "
1956 (key-description (this-command-keys))
1957 " for low priority activity."))))))))
1959 (define-obsolete-variable-alias 'rcirc-activity-hooks
1960 'rcirc-activity-functions "24.3")
1961 (defvar rcirc-activity-functions nil
1962 "Hook to be run when there is channel activity.
1964 Functions are called with a single argument, the buffer with the
1965 activity. Only run if the buffer is not visible and
1966 `rcirc-ignore-buffer-activity-flag' is non-nil.")
1968 (defun rcirc-record-activity (buffer &optional type)
1969 "Record BUFFER activity with TYPE."
1970 (with-current-buffer buffer
1971 (let ((old-activity rcirc-activity)
1972 (old-types rcirc-activity-types))
1973 (when (not (get-buffer-window (current-buffer) t))
1974 (setq rcirc-activity
1975 (sort (if (memq (current-buffer) rcirc-activity) rcirc-activity
1976 (cons (current-buffer) rcirc-activity))
1977 (lambda (b1 b2)
1978 (let ((t1 (with-current-buffer b1 rcirc-last-post-time))
1979 (t2 (with-current-buffer b2 rcirc-last-post-time)))
1980 (time-less-p t2 t1)))))
1981 (cl-pushnew type rcirc-activity-types)
1982 (unless (and (equal rcirc-activity old-activity)
1983 (member type old-types))
1984 (rcirc-update-activity-string)))))
1985 (run-hook-with-args 'rcirc-activity-functions buffer))
1987 (defun rcirc-clear-activity (buffer)
1988 "Clear the BUFFER activity."
1989 (setq rcirc-activity (remove buffer rcirc-activity))
1990 (with-current-buffer buffer
1991 (setq rcirc-activity-types nil)))
1993 (defun rcirc-clear-unread (buffer)
1994 "Erase the last read message arrow from BUFFER."
1995 (when (buffer-live-p buffer)
1996 (with-current-buffer buffer
1997 (set-marker overlay-arrow-position nil))))
1999 (defun rcirc-split-activity (activity)
2000 "Return a cons cell with ACTIVITY split into (lopri . hipri)."
2001 (let (lopri hipri)
2002 (dolist (buf activity)
2003 (with-current-buffer buf
2004 (if (and rcirc-low-priority-flag
2005 (not (member 'nick rcirc-activity-types)))
2006 (push buf lopri)
2007 (push buf hipri))))
2008 (cons (nreverse lopri) (nreverse hipri))))
2010 (defvar rcirc-update-activity-string-hook nil
2011 "Hook run whenever the activity string is updated.")
2013 ;; TODO: add mouse properties
2014 (defun rcirc-update-activity-string ()
2015 "Update mode-line string."
2016 (let* ((pair (rcirc-split-activity rcirc-activity))
2017 (lopri (car pair))
2018 (hipri (cdr pair)))
2019 (setq rcirc-activity-string
2020 (cond ((or hipri lopri)
2021 (concat (and hipri "[")
2022 (rcirc-activity-string hipri)
2023 (and hipri lopri ",")
2024 (and lopri
2025 (concat "("
2026 (rcirc-activity-string lopri)
2027 ")"))
2028 (and hipri "]")))
2029 ((not (null (rcirc-process-list)))
2030 "[]")
2031 (t "[]")))
2032 (run-hooks 'rcirc-update-activity-string-hook)))
2034 (defun rcirc-activity-string (buffers)
2035 (mapconcat (lambda (b)
2036 (let ((s (substring-no-properties (rcirc-short-buffer-name b))))
2037 (with-current-buffer b
2038 (dolist (type rcirc-activity-types)
2039 (rcirc-add-face 0 (length s)
2040 (cl-case type
2041 (nick 'rcirc-track-nick)
2042 (keyword 'rcirc-track-keyword))
2043 s)))
2045 buffers ","))
2047 (defun rcirc-short-buffer-name (buffer)
2048 "Return a short name for BUFFER to use in the mode line indicator."
2049 (with-current-buffer buffer
2050 (or rcirc-short-buffer-name (buffer-name))))
2052 (defun rcirc-visible-buffers ()
2053 "Return a list of the visible buffers that are in rcirc-mode."
2054 (let (acc)
2055 (walk-windows (lambda (w)
2056 (with-current-buffer (window-buffer w)
2057 (when (eq major-mode 'rcirc-mode)
2058 (push (current-buffer) acc)))))
2059 acc))
2061 (defvar rcirc-visible-buffers nil)
2062 (defun rcirc-window-configuration-change ()
2063 (unless (minibuffer-window-active-p (minibuffer-window))
2064 ;; delay this until command has finished to make sure window is
2065 ;; actually visible before clearing activity
2066 (add-hook 'post-command-hook 'rcirc-window-configuration-change-1)))
2068 (defun rcirc-window-configuration-change-1 ()
2069 ;; clear activity and overlay arrows
2070 (let* ((old-activity rcirc-activity)
2071 (hidden-buffers rcirc-visible-buffers))
2073 (setq rcirc-visible-buffers (rcirc-visible-buffers))
2075 (dolist (vbuf rcirc-visible-buffers)
2076 (setq hidden-buffers (delq vbuf hidden-buffers))
2077 ;; clear activity for all visible buffers
2078 (rcirc-clear-activity vbuf))
2080 ;; clear unread arrow from recently hidden buffers
2081 (dolist (hbuf hidden-buffers)
2082 (rcirc-clear-unread hbuf))
2084 ;; remove any killed buffers from list
2085 (setq rcirc-activity
2086 (delq nil (mapcar (lambda (buf) (when (buffer-live-p buf) buf))
2087 rcirc-activity)))
2088 ;; update the mode-line string
2089 (unless (equal old-activity rcirc-activity)
2090 (rcirc-update-activity-string)))
2092 (remove-hook 'post-command-hook 'rcirc-window-configuration-change-1))
2095 ;;; buffer name abbreviation
2096 (defun rcirc-update-short-buffer-names ()
2097 (let ((bufalist
2098 (apply 'append (mapcar (lambda (process)
2099 (with-rcirc-process-buffer process
2100 rcirc-buffer-alist))
2101 (rcirc-process-list)))))
2102 (dolist (i (rcirc-abbreviate bufalist))
2103 (when (buffer-live-p (cdr i))
2104 (with-current-buffer (cdr i)
2105 (setq rcirc-short-buffer-name (car i)))))))
2107 (defun rcirc-abbreviate (pairs)
2108 (apply 'append (mapcar 'rcirc-rebuild-tree (rcirc-make-trees pairs))))
2110 (defun rcirc-rebuild-tree (tree &optional acc)
2111 (let ((ch (char-to-string (car tree))))
2112 (dolist (x (cdr tree))
2113 (if (listp x)
2114 (setq acc (append acc
2115 (mapcar (lambda (y)
2116 (cons (concat ch (car y))
2117 (cdr y)))
2118 (rcirc-rebuild-tree x))))
2119 (setq acc (cons (cons ch x) acc))))
2120 acc))
2122 (defun rcirc-make-trees (pairs)
2123 (let (alist)
2124 (mapc (lambda (pair)
2125 (if (consp pair)
2126 (let* ((str (car pair))
2127 (data (cdr pair))
2128 (char (unless (zerop (length str))
2129 (aref str 0)))
2130 (rest (unless (zerop (length str))
2131 (substring str 1)))
2132 (part (if char (assq char alist))))
2133 (if part
2134 ;; existing partition
2135 (setcdr part (cons (cons rest data) (cdr part)))
2136 ;; new partition
2137 (setq alist (cons (if char
2138 (list char (cons rest data))
2139 data)
2140 alist))))
2141 (setq alist (cons pair alist))))
2142 pairs)
2143 ;; recurse into cdrs of alist
2144 (mapc (lambda (x)
2145 (when (and (listp x) (listp (cadr x)))
2146 (setcdr x (if (> (length (cdr x)) 1)
2147 (rcirc-make-trees (cdr x))
2148 (setcdr x (list (cl-cdadr x)))))))
2149 alist)))
2151 ;;; /commands these are called with 3 args: PROCESS, TARGET, which is
2152 ;; the current buffer/channel/user, and ARGS, which is a string
2153 ;; containing the text following the /cmd.
2155 (defmacro defun-rcirc-command (command argument docstring interactive-form
2156 &rest body)
2157 "Define a command."
2158 `(progn
2159 (add-to-list 'rcirc-client-commands ,(concat "/" (symbol-name command)))
2160 (defun ,(intern (concat "rcirc-cmd-" (symbol-name command)))
2161 (,@argument &optional process target)
2162 ,(concat docstring "\n\nNote: If PROCESS or TARGET are nil, the values given"
2163 "\nby `rcirc-buffer-process' and `rcirc-target' will be used.")
2164 ,interactive-form
2165 (let ((process (or process (rcirc-buffer-process)))
2166 (target (or target rcirc-target)))
2167 ,@body))))
2169 (defun-rcirc-command msg (message)
2170 "Send private MESSAGE to TARGET."
2171 (interactive "i")
2172 (if (null message)
2173 (progn
2174 (setq target (completing-read "Message nick: "
2175 (with-rcirc-server-buffer
2176 rcirc-nick-table)))
2177 (when (> (length target) 0)
2178 (setq message (read-string (format "Message %s: " target)))
2179 (when (> (length message) 0)
2180 (rcirc-send-message process target message))))
2181 (if (not (string-match "\\([^ ]+\\) \\(.+\\)" message))
2182 (message "Not enough args, or something.")
2183 (setq target (match-string 1 message)
2184 message (match-string 2 message))
2185 (rcirc-send-message process target message))))
2187 (defun-rcirc-command query (nick)
2188 "Open a private chat buffer to NICK."
2189 (interactive (list (completing-read "Query nick: "
2190 (with-rcirc-server-buffer rcirc-nick-table))))
2191 (let ((existing-buffer (rcirc-get-buffer process nick)))
2192 (switch-to-buffer (or existing-buffer
2193 (rcirc-get-buffer-create process nick)))
2194 (when (not existing-buffer)
2195 (rcirc-cmd-whois nick))))
2197 (defun-rcirc-command join (channels)
2198 "Join CHANNELS.
2199 CHANNELS is a comma- or space-separated string of channel names."
2200 (interactive "sJoin channels: ")
2201 (let* ((split-channels (split-string channels "[ ,]" t))
2202 (buffers (mapcar (lambda (ch)
2203 (rcirc-get-buffer-create process ch))
2204 split-channels))
2205 (channels (mapconcat 'identity split-channels ",")))
2206 (rcirc-send-string process (concat "JOIN " channels))
2207 (when (not (eq (selected-window) (minibuffer-window)))
2208 (dolist (b buffers) ;; order the new channel buffers in the buffer list
2209 (switch-to-buffer b)))))
2211 (defun-rcirc-command invite (nick-channel)
2212 "Invite NICK to CHANNEL."
2213 (interactive (list
2214 (concat
2215 (completing-read "Invite nick: "
2216 (with-rcirc-server-buffer rcirc-nick-table))
2218 (read-string "Channel: "))))
2219 (rcirc-send-string process (concat "INVITE " nick-channel)))
2221 ;; TODO: /part #channel reason, or consider removing #channel altogether
2222 (defun-rcirc-command part (channel)
2223 "Part CHANNEL."
2224 (interactive "sPart channel: ")
2225 (let ((channel (if (> (length channel) 0) channel target)))
2226 (rcirc-send-string process (concat "PART " channel " :" rcirc-id-string))))
2228 (defun-rcirc-command quit (reason)
2229 "Send a quit message to server with REASON."
2230 (interactive "sQuit reason: ")
2231 (rcirc-send-string process (concat "QUIT :"
2232 (if (not (zerop (length reason)))
2233 reason
2234 rcirc-id-string))))
2236 (defun-rcirc-command reconnect (_)
2237 "Reconnect to current server."
2238 (interactive "i")
2239 (with-rcirc-server-buffer
2240 (cond
2241 (rcirc-connecting (message "Already connecting"))
2242 ((process-live-p process) (message "Server process is alive"))
2243 (t (let ((conn-info rcirc-connection-info))
2244 (setf (nth 5 conn-info)
2245 (cl-remove-if-not #'rcirc-channel-p
2246 (mapcar #'car rcirc-buffer-alist)))
2247 (apply #'rcirc-connect conn-info))))))
2249 (defun-rcirc-command nick (nick)
2250 "Change nick to NICK."
2251 (interactive "i")
2252 (when (null nick)
2253 (setq nick (read-string "New nick: " (rcirc-nick process))))
2254 (rcirc-send-string process (concat "NICK " nick)))
2256 (defun-rcirc-command names (channel)
2257 "Display list of names in CHANNEL or in current channel if CHANNEL is nil.
2258 If called interactively, prompt for a channel when prefix arg is supplied."
2259 (interactive "P")
2260 (if (called-interactively-p 'interactive)
2261 (if channel
2262 (setq channel (read-string "List names in channel: " target))))
2263 (let ((channel (if (> (length channel) 0)
2264 channel
2265 target)))
2266 (rcirc-send-string process (concat "NAMES " channel))))
2268 (defun-rcirc-command topic (topic)
2269 "List TOPIC for the TARGET channel.
2270 With a prefix arg, prompt for new topic."
2271 (interactive "P")
2272 (if (and (called-interactively-p 'interactive) topic)
2273 (setq topic (read-string "New Topic: " rcirc-topic)))
2274 (rcirc-send-string process (concat "TOPIC " target
2275 (when (> (length topic) 0)
2276 (concat " :" topic)))))
2278 (defun-rcirc-command whois (nick)
2279 "Request information from server about NICK."
2280 (interactive (list
2281 (completing-read "Whois: "
2282 (with-rcirc-server-buffer rcirc-nick-table))))
2283 (rcirc-send-string process (concat "WHOIS " nick)))
2285 (defun-rcirc-command mode (args)
2286 "Set mode with ARGS."
2287 (interactive (list (concat (read-string "Mode nick or channel: ")
2288 " " (read-string "Mode: "))))
2289 (rcirc-send-string process (concat "MODE " args)))
2291 (defun-rcirc-command list (channels)
2292 "Request information on CHANNELS from server."
2293 (interactive "sList Channels: ")
2294 (rcirc-send-string process (concat "LIST " channels)))
2296 (defun-rcirc-command oper (args)
2297 "Send operator command to server."
2298 (interactive "sOper args: ")
2299 (rcirc-send-string process (concat "OPER " args)))
2301 (defun-rcirc-command quote (message)
2302 "Send MESSAGE literally to server."
2303 (interactive "sServer message: ")
2304 (rcirc-send-string process message))
2306 (defun-rcirc-command kick (arg)
2307 "Kick NICK from current channel."
2308 (interactive (list
2309 (concat (completing-read "Kick nick: "
2310 (rcirc-channel-nicks
2311 (rcirc-buffer-process)
2312 rcirc-target))
2313 (read-from-minibuffer "Kick reason: "))))
2314 (let* ((arglist (split-string arg))
2315 (argstring (concat (car arglist) " :"
2316 (mapconcat 'identity (cdr arglist) " "))))
2317 (rcirc-send-string process (concat "KICK " target " " argstring))))
2319 (defun rcirc-cmd-ctcp (args &optional process _target)
2320 (if (string-match "^\\([^ ]+\\)\\s-+\\(.+\\)$" args)
2321 (let* ((target (match-string 1 args))
2322 (request (upcase (match-string 2 args)))
2323 (function (intern-soft (concat "rcirc-ctcp-sender-" request))))
2324 (if (fboundp function) ;; use special function if available
2325 (funcall function process target request)
2326 (rcirc-send-ctcp process target request)))
2327 (rcirc-print process (rcirc-nick process) "ERROR" nil
2328 "usage: /ctcp NICK REQUEST")))
2330 (defun rcirc-ctcp-sender-PING (process target _request)
2331 "Send a CTCP PING message to TARGET."
2332 (let ((timestamp (format "%.0f" (rcirc-float-time))))
2333 (rcirc-send-ctcp process target "PING" timestamp)))
2335 (defun rcirc-cmd-me (args &optional process target)
2336 (rcirc-send-ctcp process target "ACTION" args))
2338 (defun rcirc-add-or-remove (set &rest elements)
2339 (dolist (elt elements)
2340 (if (and elt (not (string= "" elt)))
2341 (setq set (if (member-ignore-case elt set)
2342 (delete elt set)
2343 (cons elt set)))))
2344 set)
2346 (defun-rcirc-command ignore (nick)
2347 "Manage the ignore list.
2348 Ignore NICK, unignore NICK if already ignored, or list ignored
2349 nicks when no NICK is given. When listing ignored nicks, the
2350 ones added to the list automatically are marked with an asterisk."
2351 (interactive "sToggle ignoring of nick: ")
2352 (setq rcirc-ignore-list
2353 (apply #'rcirc-add-or-remove rcirc-ignore-list
2354 (split-string nick nil t)))
2355 (rcirc-print process nil "IGNORE" target
2356 (mapconcat
2357 (lambda (nick)
2358 (concat nick
2359 (if (member nick rcirc-ignore-list-automatic)
2360 "*" "")))
2361 rcirc-ignore-list " ")))
2363 (defun-rcirc-command bright (nick)
2364 "Manage the bright nick list."
2365 (interactive "sToggle emphasis of nick: ")
2366 (setq rcirc-bright-nicks
2367 (apply #'rcirc-add-or-remove rcirc-bright-nicks
2368 (split-string nick nil t)))
2369 (rcirc-print process nil "BRIGHT" target
2370 (mapconcat 'identity rcirc-bright-nicks " ")))
2372 (defun-rcirc-command dim (nick)
2373 "Manage the dim nick list."
2374 (interactive "sToggle deemphasis of nick: ")
2375 (setq rcirc-dim-nicks
2376 (apply #'rcirc-add-or-remove rcirc-dim-nicks
2377 (split-string nick nil t)))
2378 (rcirc-print process nil "DIM" target
2379 (mapconcat 'identity rcirc-dim-nicks " ")))
2381 (defun-rcirc-command keyword (keyword)
2382 "Manage the keyword list.
2383 Mark KEYWORD, unmark KEYWORD if already marked, or list marked
2384 keywords when no KEYWORD is given."
2385 (interactive "sToggle highlighting of keyword: ")
2386 (setq rcirc-keywords
2387 (apply #'rcirc-add-or-remove rcirc-keywords
2388 (split-string keyword nil t)))
2389 (rcirc-print process nil "KEYWORD" target
2390 (mapconcat 'identity rcirc-keywords " ")))
2393 (defun rcirc-add-face (start end name &optional object)
2394 "Add face NAME to the face text property of the text from START to END."
2395 (when name
2396 (let ((pos start)
2397 next prop)
2398 (while (< pos end)
2399 (setq prop (get-text-property pos 'font-lock-face object)
2400 next (next-single-property-change pos 'font-lock-face object end))
2401 (unless (member name (get-text-property pos 'font-lock-face object))
2402 (add-text-properties pos next
2403 (list 'font-lock-face (cons name prop)) object))
2404 (setq pos next)))))
2406 (defun rcirc-facify (string face)
2407 "Return a copy of STRING with FACE property added."
2408 (let ((string (or string "")))
2409 (rcirc-add-face 0 (length string) face string)
2410 string))
2412 (defvar rcirc-url-regexp
2413 (concat
2414 "\\b\\(\\(www\\.\\|\\(s?https?\\|ftp\\|file\\|gopher\\|"
2415 "nntp\\|news\\|telnet\\|wais\\|mailto\\|info\\):\\)"
2416 "\\(//[-a-z0-9_.]+:[0-9]*\\)?"
2417 (if (string-match "[[:digit:]]" "1") ;; Support POSIX?
2418 (let ((chars "-a-z0-9_=#$@~%&*+\\/[:word:]")
2419 (punct "!?:;.,"))
2420 (concat
2421 "\\(?:"
2422 ;; Match paired parentheses, e.g. in Wikipedia URLs:
2423 "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "[" chars "]"
2424 "\\|"
2425 "[" chars punct "]+" "[" chars "]"
2426 "\\)"))
2427 (concat ;; XEmacs 21.4 doesn't support POSIX.
2428 "\\([-a-z0-9_=!?#$@~%&*+\\/:;.,]\\|\\w\\)+"
2429 "\\([-a-z0-9_=#$@~%&*+\\/]\\|\\w\\)"))
2430 "\\)")
2431 "Regexp matching URLs. Set to nil to disable URL features in rcirc.")
2433 ;; cf cl-remove-if-not
2434 (defun rcirc-condition-filter (condp lst)
2435 "Remove all items not satisfying condition CONDP in list LST.
2436 CONDP is a function that takes a list element as argument and returns
2437 non-nil if that element should be included. Returns a new list."
2438 (delq nil (mapcar (lambda (x) (and (funcall condp x) x)) lst)))
2440 (defun rcirc-browse-url (&optional arg)
2441 "Prompt for URL to browse based on URLs in buffer before point.
2443 If ARG is given, opens the URL in a new browser window."
2444 (interactive "P")
2445 (let* ((point (point))
2446 (filtered (rcirc-condition-filter
2447 (lambda (x) (>= point (cdr x)))
2448 rcirc-urls))
2449 (completions (mapcar (lambda (x) (car x)) filtered))
2450 (defaults (mapcar (lambda (x) (car x)) filtered)))
2451 (browse-url (completing-read "Rcirc browse-url: "
2452 completions nil nil (car defaults) nil defaults)
2453 arg)))
2455 (defun rcirc-markup-timestamp (_sender _response)
2456 (goto-char (point-min))
2457 (insert (rcirc-facify (format-time-string rcirc-time-format)
2458 'rcirc-timestamp)))
2460 (defun rcirc-markup-attributes (_sender _response)
2461 (while (re-search-forward "\\([\C-b\C-_\C-v]\\).*?\\(\\1\\|\C-o\\)" nil t)
2462 (rcirc-add-face (match-beginning 0) (match-end 0)
2463 (cl-case (char-after (match-beginning 1))
2464 (?\C-b 'bold)
2465 (?\C-v 'italic)
2466 (?\C-_ 'underline)))
2467 ;; keep the ^O since it could terminate other attributes
2468 (when (not (eq ?\C-o (char-before (match-end 2))))
2469 (delete-region (match-beginning 2) (match-end 2)))
2470 (delete-region (match-beginning 1) (match-end 1))
2471 (goto-char (match-beginning 1)))
2472 ;; remove the ^O characters now
2473 (goto-char (point-min))
2474 (while (re-search-forward "\C-o+" nil t)
2475 (delete-region (match-beginning 0) (match-end 0))))
2477 (defun rcirc-markup-my-nick (_sender response)
2478 (with-syntax-table rcirc-nick-syntax-table
2479 (while (re-search-forward (concat "\\b"
2480 (regexp-quote (rcirc-nick
2481 (rcirc-buffer-process)))
2482 "\\b")
2483 nil t)
2484 (rcirc-add-face (match-beginning 0) (match-end 0)
2485 'rcirc-nick-in-message)
2486 (when (string= response "PRIVMSG")
2487 (rcirc-add-face (point-min) (point-max)
2488 'rcirc-nick-in-message-full-line)
2489 (rcirc-record-activity (current-buffer) 'nick)))))
2491 (defun rcirc-markup-urls (_sender _response)
2492 (while (and rcirc-url-regexp ;; nil means disable URL catching
2493 (re-search-forward rcirc-url-regexp nil t))
2494 (let* ((start (match-beginning 0))
2495 (end (match-end 0))
2496 (url (match-string-no-properties 0))
2497 (link-text (buffer-substring-no-properties start end)))
2498 (make-button start end
2499 'face 'rcirc-url
2500 'follow-link t
2501 'rcirc-url url
2502 'action (lambda (button)
2503 (browse-url (button-get button 'rcirc-url))))
2504 ;; record the url if it is not already the latest stored url
2505 (when (not (string= link-text (caar rcirc-urls)))
2506 (push (cons link-text start) rcirc-urls)))))
2508 (defun rcirc-markup-keywords (sender response)
2509 (when (and (string= response "PRIVMSG")
2510 (not (string= sender (rcirc-nick (rcirc-buffer-process)))))
2511 (let* ((target (or rcirc-target ""))
2512 (keywords (delq nil (mapcar (lambda (keyword)
2513 (when (not (string-match keyword
2514 target))
2515 keyword))
2516 rcirc-keywords))))
2517 (when keywords
2518 (while (re-search-forward (regexp-opt keywords 'words) nil t)
2519 (rcirc-add-face (match-beginning 0) (match-end 0) 'rcirc-keyword)
2520 (rcirc-record-activity (current-buffer) 'keyword))))))
2522 (defun rcirc-markup-bright-nicks (_sender response)
2523 (when (and rcirc-bright-nicks
2524 (string= response "NAMES"))
2525 (with-syntax-table rcirc-nick-syntax-table
2526 (while (re-search-forward (regexp-opt rcirc-bright-nicks 'words) nil t)
2527 (rcirc-add-face (match-beginning 0) (match-end 0)
2528 'rcirc-bright-nick)))))
2530 (defun rcirc-markup-fill (_sender response)
2531 (when (not (string= response "372")) ; /motd
2532 (let ((fill-prefix
2533 (or rcirc-fill-prefix
2534 (make-string (- (point) (line-beginning-position)) ?\s)))
2535 (fill-column (- (cond ((eq rcirc-fill-column 'frame-width)
2536 (1- (frame-width)))
2537 (rcirc-fill-column
2538 rcirc-fill-column)
2539 (t fill-column))
2540 ;; make sure ... doesn't cause line wrapping
2541 3)))
2542 (fill-region (point) (point-max) nil t))))
2544 ;;; handlers
2545 ;; these are called with the server PROCESS, the SENDER, which is a
2546 ;; server or a user, depending on the command, the ARGS, which is a
2547 ;; list of strings, and the TEXT, which is the original server text,
2548 ;; verbatim
2549 (defun rcirc-handler-001 (process sender args text)
2550 (rcirc-handler-generic process "001" sender args text)
2551 (with-rcirc-process-buffer process
2552 (setq rcirc-connecting nil)
2553 (rcirc-reschedule-timeout process)
2554 (setq rcirc-server-name sender)
2555 (setq rcirc-nick (car args))
2556 (rcirc-update-prompt)
2557 (if rcirc-auto-authenticate-flag
2558 (if (and rcirc-authenticate-before-join
2559 ;; We have to ensure that there's an authentication
2560 ;; entry for that server. Else,
2561 ;; rcirc-authenticated-hook won't be triggered, and
2562 ;; autojoin won't happen at all.
2563 (let (auth-required)
2564 (dolist (s rcirc-authinfo auth-required)
2565 (when (string-match (car s) rcirc-server-name)
2566 (setq auth-required t)))))
2567 (progn
2568 (add-hook 'rcirc-authenticated-hook 'rcirc-join-channels-post-auth t t)
2569 (rcirc-authenticate))
2570 (rcirc-authenticate)
2571 (rcirc-join-channels process rcirc-startup-channels))
2572 (rcirc-join-channels process rcirc-startup-channels))))
2574 (defun rcirc-join-channels-post-auth (process)
2575 "Join `rcirc-startup-channels' after authenticating."
2576 (with-rcirc-process-buffer process
2577 (rcirc-join-channels process rcirc-startup-channels)))
2579 (defun rcirc-handler-PRIVMSG (process sender args text)
2580 (rcirc-check-auth-status process sender args text)
2581 (let ((target (if (rcirc-channel-p (car args))
2582 (car args)
2583 sender))
2584 (message (or (cadr args) "")))
2585 (if (string-match "^\C-a\\(.*\\)\C-a$" message)
2586 (rcirc-handler-CTCP process target sender (match-string 1 message))
2587 (rcirc-print process sender "PRIVMSG" target message t))
2588 ;; update nick linestamp
2589 (with-current-buffer (rcirc-get-buffer process target t)
2590 (rcirc-put-nick-channel process sender target rcirc-current-line))))
2592 (defun rcirc-handler-NOTICE (process sender args text)
2593 (rcirc-check-auth-status process sender args text)
2594 (let ((target (car args))
2595 (message (cadr args)))
2596 (if (string-match "^\C-a\\(.*\\)\C-a$" message)
2597 (rcirc-handler-CTCP-response process target sender
2598 (match-string 1 message))
2599 (rcirc-print process sender "NOTICE"
2600 (cond ((rcirc-channel-p target)
2601 target)
2602 ;;; -ChanServ- [#gnu] Welcome...
2603 ((string-match "\\[\\(#[^\] ]+\\)\\]" message)
2604 (match-string 1 message))
2605 (sender
2606 (if (string= sender (rcirc-server-name process))
2607 nil ; server notice
2608 sender)))
2609 message t))))
2611 (defun rcirc-check-auth-status (process sender args _text)
2612 "Check if the user just authenticated.
2613 If authenticated, runs `rcirc-authenticated-hook' with PROCESS as
2614 the only argument."
2615 (with-rcirc-process-buffer process
2616 (when (and (not rcirc-user-authenticated)
2617 rcirc-authenticate-before-join
2618 rcirc-auto-authenticate-flag)
2619 (let ((target (car args))
2620 (message (cadr args)))
2621 (when (or
2622 (and ;; nickserv
2623 (string= sender "NickServ")
2624 (string= target rcirc-nick)
2625 (member message
2626 (list
2627 (format "You are now identified for \C-b%s\C-b." rcirc-nick)
2628 (format "You are successfully identified as \C-b%s\C-b." rcirc-nick)
2629 "Password accepted - you are now recognized."
2631 (and ;; quakenet
2632 (string= sender "Q")
2633 (string= target rcirc-nick)
2634 (string-match "\\`You are now logged in as .+\\.\\'" message)))
2635 (setq rcirc-user-authenticated t)
2636 (run-hook-with-args 'rcirc-authenticated-hook process)
2637 (remove-hook 'rcirc-authenticated-hook 'rcirc-join-channels-post-auth t))))))
2639 (defun rcirc-handler-WALLOPS (process sender args _text)
2640 (rcirc-print process sender "WALLOPS" sender (car args) t))
2642 (defun rcirc-handler-JOIN (process sender args _text)
2643 (let ((channel (car args)))
2644 (with-current-buffer (rcirc-get-buffer-create process channel)
2645 ;; when recently rejoining, restore the linestamp
2646 (rcirc-put-nick-channel process sender channel
2647 (let ((last-activity-lines
2648 (rcirc-elapsed-lines process sender channel)))
2649 (when (and last-activity-lines
2650 (< last-activity-lines rcirc-omit-threshold))
2651 (rcirc-last-line process sender channel))))
2652 ;; reset mode-line-process in case joining a channel with an
2653 ;; already open buffer (after getting kicked e.g.)
2654 (setq mode-line-process nil))
2656 (rcirc-print process sender "JOIN" channel "")
2658 ;; print in private chat buffer if it exists
2659 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
2660 (rcirc-print process sender "JOIN" sender channel))))
2662 ;; PART and KICK are handled the same way
2663 (defun rcirc-handler-PART-or-KICK (process _response channel _sender nick _args)
2664 (rcirc-ignore-update-automatic nick)
2665 (if (not (string= nick (rcirc-nick process)))
2666 ;; this is someone else leaving
2667 (progn
2668 (rcirc-maybe-remember-nick-quit process nick channel)
2669 (rcirc-remove-nick-channel process nick channel))
2670 ;; this is us leaving
2671 (mapc (lambda (n)
2672 (rcirc-remove-nick-channel process n channel))
2673 (rcirc-channel-nicks process channel))
2675 ;; if the buffer is still around, make it inactive
2676 (let ((buffer (rcirc-get-buffer process channel)))
2677 (when buffer
2678 (rcirc-disconnect-buffer buffer)))))
2680 (defun rcirc-handler-PART (process sender args _text)
2681 (let* ((channel (car args))
2682 (reason (cadr args))
2683 (message (concat channel " " reason)))
2684 (rcirc-print process sender "PART" channel message)
2685 ;; print in private chat buffer if it exists
2686 (when (rcirc-get-buffer (rcirc-buffer-process) sender)
2687 (rcirc-print process sender "PART" sender message))
2689 (rcirc-handler-PART-or-KICK process "PART" channel sender sender reason)))
2691 (defun rcirc-handler-KICK (process sender args _text)
2692 (let* ((channel (car args))
2693 (nick (cadr args))
2694 (reason (cl-caddr args))
2695 (message (concat nick " " channel " " reason)))
2696 (rcirc-print process sender "KICK" channel message t)
2697 ;; print in private chat buffer if it exists
2698 (when (rcirc-get-buffer (rcirc-buffer-process) nick)
2699 (rcirc-print process sender "KICK" nick message))
2701 (rcirc-handler-PART-or-KICK process "KICK" channel sender nick reason)))
2703 (defun rcirc-maybe-remember-nick-quit (process nick channel)
2704 "Remember NICK as leaving CHANNEL if they recently spoke."
2705 (let ((elapsed-lines (rcirc-elapsed-lines process nick channel)))
2706 (when (and elapsed-lines
2707 (< elapsed-lines rcirc-omit-threshold))
2708 (let ((buffer (rcirc-get-buffer process channel)))
2709 (when buffer
2710 (with-current-buffer buffer
2711 (let ((record (assoc-string nick rcirc-recent-quit-alist t))
2712 (line (rcirc-last-line process nick channel)))
2713 (if record
2714 (setcdr record line)
2715 (setq rcirc-recent-quit-alist
2716 (cons (cons nick line)
2717 rcirc-recent-quit-alist))))))))))
2719 (defun rcirc-handler-QUIT (process sender args _text)
2720 (rcirc-ignore-update-automatic sender)
2721 (mapc (lambda (channel)
2722 ;; broadcast quit message each channel
2723 (rcirc-print process sender "QUIT" channel (apply 'concat args))
2724 ;; record nick in quit table if they recently spoke
2725 (rcirc-maybe-remember-nick-quit process sender channel))
2726 (rcirc-nick-channels process sender))
2727 (rcirc-nick-remove process sender))
2729 (defun rcirc-handler-NICK (process sender args _text)
2730 (let* ((old-nick sender)
2731 (new-nick (car args))
2732 (channels (rcirc-nick-channels process old-nick)))
2733 ;; update list of ignored nicks
2734 (rcirc-ignore-update-automatic old-nick)
2735 (when (member old-nick rcirc-ignore-list)
2736 (add-to-list 'rcirc-ignore-list new-nick)
2737 (add-to-list 'rcirc-ignore-list-automatic new-nick))
2738 ;; print message to nick's channels
2739 (dolist (target channels)
2740 (rcirc-print process sender "NICK" target new-nick))
2741 ;; update private chat buffer, if it exists
2742 (let ((chat-buffer (rcirc-get-buffer process old-nick)))
2743 (when chat-buffer
2744 (with-current-buffer chat-buffer
2745 (rcirc-print process sender "NICK" old-nick new-nick)
2746 (setq rcirc-target new-nick)
2747 (rename-buffer (rcirc-generate-new-buffer-name process new-nick)))))
2748 ;; remove old nick and add new one
2749 (with-rcirc-process-buffer process
2750 (let ((v (gethash old-nick rcirc-nick-table)))
2751 (remhash old-nick rcirc-nick-table)
2752 (puthash new-nick v rcirc-nick-table))
2753 ;; if this is our nick...
2754 (when (string= old-nick rcirc-nick)
2755 (setq rcirc-nick new-nick)
2756 (rcirc-update-prompt t)
2757 ;; reauthenticate
2758 (when rcirc-auto-authenticate-flag (rcirc-authenticate))))))
2760 (defun rcirc-handler-PING (process _sender args _text)
2761 (rcirc-send-string process (concat "PONG :" (car args))))
2763 (defun rcirc-handler-PONG (_process _sender _args _text)
2764 ;; do nothing
2767 (defun rcirc-handler-TOPIC (process sender args _text)
2768 (let ((topic (cadr args)))
2769 (rcirc-print process sender "TOPIC" (car args) topic)
2770 (with-current-buffer (rcirc-get-buffer process (car args))
2771 (setq rcirc-topic topic))))
2773 (defvar rcirc-nick-away-alist nil)
2774 (defun rcirc-handler-301 (process _sender args text)
2775 "RPL_AWAY"
2776 (let* ((nick (cadr args))
2777 (rec (assoc-string nick rcirc-nick-away-alist))
2778 (away-message (cl-caddr args)))
2779 (when (or (not rec)
2780 (not (string= (cdr rec) away-message)))
2781 ;; away message has changed
2782 (rcirc-handler-generic process "AWAY" nick (cdr args) text)
2783 (if rec
2784 (setcdr rec away-message)
2785 (setq rcirc-nick-away-alist (cons (cons nick away-message)
2786 rcirc-nick-away-alist))))))
2788 (defun rcirc-handler-317 (process sender args _text)
2789 "RPL_WHOISIDLE"
2790 (let* ((nick (nth 1 args))
2791 (idle-secs (string-to-number (nth 2 args)))
2792 (idle-string
2793 (if (< idle-secs most-positive-fixnum)
2794 (format-seconds "%yy %dd %hh %mm %z%ss" idle-secs)
2795 "a very long time"))
2796 (signon-time (seconds-to-time (string-to-number (nth 3 args))))
2797 (signon-string (format-time-string "%c" signon-time))
2798 (message (format "%s idle for %s, signed on %s"
2799 nick idle-string signon-string)))
2800 (rcirc-print process sender "317" nil message t)))
2802 (defun rcirc-handler-332 (process _sender args _text)
2803 "RPL_TOPIC"
2804 (let ((buffer (or (rcirc-get-buffer process (cadr args))
2805 (rcirc-get-temp-buffer-create process (cadr args)))))
2806 (with-current-buffer buffer
2807 (setq rcirc-topic (cl-caddr args)))))
2809 (defun rcirc-handler-333 (process sender args _text)
2810 "333 says who set the topic and when.
2811 Not in rfc1459.txt"
2812 (let ((buffer (or (rcirc-get-buffer process (cadr args))
2813 (rcirc-get-temp-buffer-create process (cadr args)))))
2814 (with-current-buffer buffer
2815 (let ((setter (cl-caddr args))
2816 (time (current-time-string
2817 (seconds-to-time
2818 (string-to-number (cl-cadddr args))))))
2819 (rcirc-print process sender "TOPIC" (cadr args)
2820 (format "%s (%s on %s)" rcirc-topic setter time))))))
2822 (defun rcirc-handler-477 (process sender args _text)
2823 "ERR_NOCHANMODES"
2824 (rcirc-print process sender "477" (cadr args) (cl-caddr args)))
2826 (defun rcirc-handler-MODE (process sender args _text)
2827 (let ((target (car args))
2828 (msg (mapconcat 'identity (cdr args) " ")))
2829 (rcirc-print process sender "MODE"
2830 (if (string= target (rcirc-nick process))
2832 target)
2833 msg)
2835 ;; print in private chat buffers if they exist
2836 (mapc (lambda (nick)
2837 (when (rcirc-get-buffer process nick)
2838 (rcirc-print process sender "MODE" nick msg)))
2839 (cddr args))))
2841 (defun rcirc-get-temp-buffer-create (process channel)
2842 "Return a buffer based on PROCESS and CHANNEL."
2843 (let ((tmpnam (concat " " (downcase channel) "TMP" (process-name process))))
2844 (get-buffer-create tmpnam)))
2846 (defun rcirc-handler-353 (process _sender args _text)
2847 "RPL_NAMREPLY"
2848 (let ((channel (nth 2 args))
2849 (names (or (nth 3 args) "")))
2850 (mapc (lambda (nick)
2851 (rcirc-put-nick-channel process nick channel))
2852 (split-string names " " t))
2853 ;; create a temporary buffer to insert the names into
2854 ;; rcirc-handler-366 (RPL_ENDOFNAMES) will handle it
2855 (with-current-buffer (rcirc-get-temp-buffer-create process channel)
2856 (goto-char (point-max))
2857 (insert (car (last args)) " "))))
2859 (defun rcirc-handler-366 (process sender args _text)
2860 "RPL_ENDOFNAMES"
2861 (let* ((channel (cadr args))
2862 (buffer (rcirc-get-temp-buffer-create process channel)))
2863 (with-current-buffer buffer
2864 (rcirc-print process sender "NAMES" channel
2865 (let ((content (buffer-substring (point-min) (point-max))))
2866 (rcirc-sort-nicknames-join content " "))))
2867 (kill-buffer buffer)))
2869 (defun rcirc-handler-433 (process sender args text)
2870 "ERR_NICKNAMEINUSE"
2871 (rcirc-handler-generic process "433" sender args text)
2872 (let* ((new-nick (concat (cadr args) "`")))
2873 (with-rcirc-process-buffer process
2874 (rcirc-cmd-nick new-nick nil process))))
2876 (defun rcirc-authenticate ()
2877 "Send authentication to process associated with current buffer.
2878 Passwords are stored in `rcirc-authinfo' (which see)."
2879 (interactive)
2880 (with-rcirc-server-buffer
2881 (dolist (i rcirc-authinfo)
2882 (let ((process (rcirc-buffer-process))
2883 (server (car i))
2884 (nick (cl-caddr i))
2885 (method (cadr i))
2886 (args (cl-cdddr i)))
2887 (when (and (string-match server rcirc-server))
2888 (if (and (memq method '(nickserv chanserv bitlbee))
2889 (string-match nick rcirc-nick))
2890 ;; the following methods rely on the user's nickname.
2891 (cl-case method
2892 (nickserv
2893 (rcirc-send-privmsg
2894 process
2895 (or (cadr args) "NickServ")
2896 (concat "IDENTIFY " (car args))))
2897 (chanserv
2898 (rcirc-send-privmsg
2899 process
2900 "ChanServ"
2901 (format "IDENTIFY %s %s" (car args) (cadr args))))
2902 (bitlbee
2903 (rcirc-send-privmsg
2904 process
2905 "&bitlbee"
2906 (concat "IDENTIFY " (car args)))))
2907 ;; quakenet authentication doesn't rely on the user's nickname.
2908 ;; the variable `nick' here represents the Q account name.
2909 (when (eq method 'quakenet)
2910 (rcirc-send-privmsg
2911 process
2912 "Q@CServe.quakenet.org"
2913 (format "AUTH %s %s" nick (car args))))))))))
2915 (defun rcirc-handler-INVITE (process sender args _text)
2916 (rcirc-print process sender "INVITE" nil (mapconcat 'identity args " ") t))
2918 (defun rcirc-handler-ERROR (process sender args _text)
2919 (rcirc-print process sender "ERROR" nil (mapconcat 'identity args " ")))
2921 (defun rcirc-handler-CTCP (process target sender text)
2922 (if (string-match "^\\([^ ]+\\) *\\(.*\\)$" text)
2923 (let* ((request (upcase (match-string 1 text)))
2924 (args (match-string 2 text))
2925 (handler (intern-soft (concat "rcirc-handler-ctcp-" request))))
2926 (if (not (fboundp handler))
2927 (rcirc-print process sender "ERROR" target
2928 (format "%s sent unsupported ctcp: %s" sender text)
2930 (funcall handler process target sender args)
2931 (unless (or (string= request "ACTION")
2932 (string= request "KEEPALIVE"))
2933 (rcirc-print process sender "CTCP" target
2934 (format "%s" text) t))))))
2936 (defun rcirc-handler-ctcp-VERSION (process _target sender _args)
2937 (rcirc-send-string process
2938 (concat "NOTICE " sender
2939 " :\C-aVERSION " rcirc-id-string
2940 "\C-a")))
2942 (defun rcirc-handler-ctcp-ACTION (process target sender args)
2943 (rcirc-print process sender "ACTION" target args t))
2945 (defun rcirc-handler-ctcp-TIME (process _target sender _args)
2946 (rcirc-send-string process
2947 (concat "NOTICE " sender
2948 " :\C-aTIME " (current-time-string) "\C-a")))
2950 (defun rcirc-handler-CTCP-response (process _target sender message)
2951 (rcirc-print process sender "CTCP" nil message t))
2953 (defgroup rcirc-faces nil
2954 "Faces for rcirc."
2955 :group 'rcirc
2956 :group 'faces)
2958 (defface rcirc-my-nick ; font-lock-function-name-face
2959 '((((class color) (min-colors 88) (background light)) :foreground "Blue1")
2960 (((class color) (min-colors 88) (background dark)) :foreground "LightSkyBlue")
2961 (((class color) (min-colors 16) (background light)) :foreground "Blue")
2962 (((class color) (min-colors 16) (background dark)) :foreground "LightSkyBlue")
2963 (((class color) (min-colors 8)) :foreground "blue" :weight bold)
2964 (t :inverse-video t :weight bold))
2965 "Rcirc face for my messages."
2966 :group 'rcirc-faces)
2968 (defface rcirc-other-nick ; font-lock-variable-name-face
2969 '((((class grayscale) (background light))
2970 :foreground "Gray90" :weight bold :slant italic)
2971 (((class grayscale) (background dark))
2972 :foreground "DimGray" :weight bold :slant italic)
2973 (((class color) (min-colors 88) (background light)) :foreground "DarkGoldenrod")
2974 (((class color) (min-colors 88) (background dark)) :foreground "LightGoldenrod")
2975 (((class color) (min-colors 16) (background light)) :foreground "DarkGoldenrod")
2976 (((class color) (min-colors 16) (background dark)) :foreground "LightGoldenrod")
2977 (((class color) (min-colors 8)) :foreground "yellow" :weight light)
2978 (t :weight bold :slant italic))
2979 "Rcirc face for other users' messages."
2980 :group 'rcirc-faces)
2982 (defface rcirc-bright-nick
2983 '((((class grayscale) (background light))
2984 :foreground "LightGray" :weight bold :underline t)
2985 (((class grayscale) (background dark))
2986 :foreground "Gray50" :weight bold :underline t)
2987 (((class color) (min-colors 88) (background light)) :foreground "CadetBlue")
2988 (((class color) (min-colors 88) (background dark)) :foreground "Aquamarine")
2989 (((class color) (min-colors 16) (background light)) :foreground "CadetBlue")
2990 (((class color) (min-colors 16) (background dark)) :foreground "Aquamarine")
2991 (((class color) (min-colors 8)) :foreground "magenta")
2992 (t :weight bold :underline t))
2993 "Rcirc face for nicks matched by `rcirc-bright-nicks'."
2994 :group 'rcirc-faces)
2996 (defface rcirc-dim-nick
2997 '((t :inherit default))
2998 "Rcirc face for nicks in `rcirc-dim-nicks'."
2999 :group 'rcirc-faces)
3001 (defface rcirc-server ; font-lock-comment-face
3002 '((((class grayscale) (background light))
3003 :foreground "DimGray" :weight bold :slant italic)
3004 (((class grayscale) (background dark))
3005 :foreground "LightGray" :weight bold :slant italic)
3006 (((class color) (min-colors 88) (background light))
3007 :foreground "Firebrick")
3008 (((class color) (min-colors 88) (background dark))
3009 :foreground "chocolate1")
3010 (((class color) (min-colors 16) (background light))
3011 :foreground "red")
3012 (((class color) (min-colors 16) (background dark))
3013 :foreground "red1")
3014 (((class color) (min-colors 8) (background light)))
3015 (((class color) (min-colors 8) (background dark)))
3016 (t :weight bold :slant italic))
3017 "Rcirc face for server messages."
3018 :group 'rcirc-faces)
3020 (defface rcirc-server-prefix ; font-lock-comment-delimiter-face
3021 '((default :inherit rcirc-server)
3022 (((class grayscale)))
3023 (((class color) (min-colors 16)))
3024 (((class color) (min-colors 8) (background light))
3025 :foreground "red")
3026 (((class color) (min-colors 8) (background dark))
3027 :foreground "red1"))
3028 "Rcirc face for server prefixes."
3029 :group 'rcirc-faces)
3031 (defface rcirc-timestamp
3032 '((t :inherit default))
3033 "Rcirc face for timestamps."
3034 :group 'rcirc-faces)
3036 (defface rcirc-nick-in-message ; font-lock-keyword-face
3037 '((((class grayscale) (background light)) :foreground "LightGray" :weight bold)
3038 (((class grayscale) (background dark)) :foreground "DimGray" :weight bold)
3039 (((class color) (min-colors 88) (background light)) :foreground "Purple")
3040 (((class color) (min-colors 88) (background dark)) :foreground "Cyan1")
3041 (((class color) (min-colors 16) (background light)) :foreground "Purple")
3042 (((class color) (min-colors 16) (background dark)) :foreground "Cyan")
3043 (((class color) (min-colors 8)) :foreground "cyan" :weight bold)
3044 (t :weight bold))
3045 "Rcirc face for instances of your nick within messages."
3046 :group 'rcirc-faces)
3048 (defface rcirc-nick-in-message-full-line '((t :weight bold))
3049 "Rcirc face for emphasizing the entire message when your nick is mentioned."
3050 :group 'rcirc-faces)
3052 (defface rcirc-prompt ; comint-highlight-prompt
3053 '((((min-colors 88) (background dark)) :foreground "cyan1")
3054 (((background dark)) :foreground "cyan")
3055 (t :foreground "dark blue"))
3056 "Rcirc face for prompts."
3057 :group 'rcirc-faces)
3059 (defface rcirc-track-nick
3060 '((((type tty)) :inherit default)
3061 (t :inverse-video t))
3062 "Rcirc face used in the mode-line when your nick is mentioned."
3063 :group 'rcirc-faces)
3065 (defface rcirc-track-keyword '((t :weight bold))
3066 "Rcirc face used in the mode-line when keywords are mentioned."
3067 :group 'rcirc-faces)
3069 (defface rcirc-url '((t :weight bold))
3070 "Rcirc face used to highlight urls."
3071 :group 'rcirc-faces)
3073 (defface rcirc-keyword '((t :inherit highlight))
3074 "Rcirc face used to highlight keywords."
3075 :group 'rcirc-faces)
3078 ;; When using M-x flyspell-mode, only check words after the prompt
3079 (put 'rcirc-mode 'flyspell-mode-predicate 'rcirc-looking-at-input)
3080 (defun rcirc-looking-at-input ()
3081 "Returns true if point is past the input marker."
3082 (>= (point) rcirc-prompt-end-marker))
3085 (provide 'rcirc)
3087 ;;; rcirc.el ends here