Function: htz:date-sortable-gmt

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

Signature

(htz:date-sortable-gmt &optional DATE LOCAL)

Documentation

Convert optional DATE or current date to a sortable date string in GMT.

Optional argument LOCAL specifies the local timezone of the DATE.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/htz.el
;;;
;;; Parsers and Constructors of Date and Time
;;;

(defun htz:date-sortable-gmt (&optional date local)
  "Convert optional DATE or current date to a sortable date string in GMT.
Optional argument LOCAL specifies the local timezone of the DATE."
  (htz:date-sortable date local "GMT"))