Function: htz:time-make-string

htz:time-make-string is a byte-compiled function defined in htz.el.

Signature

(htz:time-make-string HOUR MINUTE SECOND)

Documentation

Make time string from HOUR, MINUTE, and SECOND.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/htz.el
;; Partly copied from Calendar program by Edward M. Reingold.
(defun htz:time-make-string (hour minute second)
  "Make time string from HOUR, MINUTE, and SECOND."
  (format "%02.2d:%02.2d:%02.2d" hour minute second))