Function: rcirc-handler-ctcp-TIME

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

Signature

(rcirc-handler-ctcp-TIME PROCESS TARGET SENDER MESSAGE)

Documentation

Respond to CTCP TIME message 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-ctcp-TIME (process _target sender _message)
  "Respond to CTCP TIME message from SENDER.
PROCESS is the process object for the current connection."
  (rcirc-send-string process "NOTICE" sender :
                     (rcirc-ctcp-wrap "TIME" (current-time-string))))