Function: parseedn-print-inst

parseedn-print-inst is a byte-compiled function defined in parseedn.el.

Signature

(parseedn-print-inst TIME)

Documentation

Insert an inst value TIME into the current buffer.

Take an encode-time style value and print it as a timestamp deliniated by double quotes.

Source Code

;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
(defun parseedn-print-inst (time)
  "Insert an inst value TIME into the current buffer.

Take an `encode-time' style value and print it as a timestamp
deliniated by double quotes."
  (insert (format-time-string "\"%Y-%m-%dT%T\"" time)))