Function: archive-unixtime
archive-unixtime is a byte-compiled function defined in
arc-mode.el.gz.
Signature
(archive-unixtime LOW HIGH)
Documentation
Stringify Unix (LOW HIGH) time.
Source Code
;; Defined in /usr/src/emacs/lisp/arc-mode.el.gz
(defun archive-unixtime (low high)
"Stringify Unix (LOW HIGH) time."
(format-time-string "%H:%M:%S" (list high low)))