Function: erc-echo-timestamp

erc-echo-timestamp is a byte-compiled function defined in erc-stamp.el.gz.

Signature

(erc-echo-timestamp DIR STAMP)

Documentation

Print timestamp text-property of an IRC message.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-stamp.el.gz
(defun erc-echo-timestamp (dir stamp)
  "Print timestamp text-property of an IRC message."
  (when (and erc-echo-timestamps (eq 'entered dir))
    (when stamp
      (message "%s" (format-time-string erc-echo-timestamp-format
					stamp)))))