Function: org-publish-update-timestamp

org-publish-update-timestamp is a byte-compiled function defined in ox-publish.el.gz.

Signature

(org-publish-update-timestamp FILENAME &optional PUB-DIR PUB-FUNC BASE-DIR)

Documentation

Update publishing timestamp for file FILENAME.

If there is no timestamp, create one.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-publish.el.gz
(defun org-publish-update-timestamp
    (filename &optional pub-dir pub-func _base-dir)
  "Update publishing timestamp for file FILENAME.
If there is no timestamp, create one."
  (let ((key (org-publish-timestamp-filename filename pub-dir pub-func))
	(stamp (org-publish-cache-mtime-of-src filename)))
    (org-publish-cache-set key stamp)))