Function: htz:date-make-unix

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

Signature

(htz:date-make-unix YEAR MONTH DAY TIME &optional TIMEZONE)

Documentation

Approximate Unix date format from YEAR, MONTH, DAY, and TIME.

Optional argument TIMEZONE specifies a time zone.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/htz.el
(defun htz:date-make-unix (year month day time &optional timezone)
  "Approximate Unix date format from YEAR, MONTH, DAY, and TIME.
Optional argument TIMEZONE specifies a time zone."
  (format "%s %02d %s%s %04d"
	  (capitalize (car (rassq month htz:months-assoc)))
	  day time (if timezone (concat " " timezone) "") year))