Function: htz:date-make-sortable

htz:date-make-sortable is a byte-compiled function defined in htz.el.

Signature

(htz:date-make-sortable YEAR MONTH DAY TIME)

Documentation

Make sortable date string from YEAR, MONTH, DAY, and TIME.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/htz.el
(defun htz:date-make-sortable (year month day time)
  "Make sortable date string from YEAR, MONTH, DAY, and TIME."
  (format "%04d%02d%02d:%s" year month day time))