Function: make-decoded-time

make-decoded-time is a byte-compiled function defined in time-date.el.gz.

Signature

(make-decoded-time &key SECOND MINUTE HOUR DAY MONTH YEAR DST ZONE)

Documentation

Return a decoded-time structure with only the keywords given filled out.

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/time-date.el.gz
(cl-defun make-decoded-time (&key second minute hour
                                  day month year
                                  dst zone)
  "Return a `decoded-time' structure with only the keywords given filled out."
  (list second minute hour day month year nil dst zone))