Function: erc-cmd-PING
erc-cmd-PING is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-PING RECIPIENT)
Documentation
Ping RECIPIENT.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-PING (recipient)
"Ping RECIPIENT."
(let ((time (format-time-string "%s.%6N")))
(erc-log (format "cmd: PING: %s" time))
(erc-cmd-CTCP recipient "PING" time)))