Function: texinfo-format-timestamp
texinfo-format-timestamp is a byte-compiled function defined in
texinfmt.el.gz.
Signature
(texinfo-format-timestamp)
Documentation
Insert the current local time and date.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfmt.el.gz
;; The `@timestamp{}' command requires a pair of braces, like `@dots{}'.
(defun texinfo-format-timestamp ()
"Insert the current local time and date."
(texinfo-parse-arg-discard)
;; For seconds and time zone, replace format string with "%e %b %Y %T %Z"
(insert (format-time-string "%e %b %Y %R")))