Function: rcirc-when
rcirc-when is an interactive and byte-compiled function defined in
rcirc.el.gz.
Signature
(rcirc-when)
Documentation
Show the time of reception of the message at point.
Probably introduced at or before Emacs version 29.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-when ()
"Show the time of reception of the message at point."
(interactive)
(if-let* ((time (get-text-property (point) 'rcirc-time)))
(message (format-time-string "%c" time))
(message "No time information at point.")))