Function: rcirc-handler-TOPIC

rcirc-handler-TOPIC is a byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-handler-TOPIC PROCESS SENDER ARGS TEXT)

Documentation

Note the topic change from SENDER.

PROCESS is the process object for the current connection.

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-handler-TOPIC (process sender args _text)
  "Note the topic change from SENDER.
PROCESS is the process object for the current connection."
  (let ((topic (cadr args)))
    (rcirc-print process sender "TOPIC" (car args) topic)
    (with-current-buffer (rcirc-get-buffer process (car args))
      (setq rcirc-topic topic))))