mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-18 18:51:52 +00:00
lisp/ox-publish.el (org-publish-timestamp-filename): Document function arguments
This commit is contained in:
parent
4758255035
commit
819cd73cb4
@ -358,7 +358,9 @@ You can overwrite this default per project in your
|
||||
;;; Timestamp-related functions
|
||||
|
||||
(defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
|
||||
"Return path to timestamp file for filename FILENAME."
|
||||
"Return path to timestamp file for filename FILENAME.
|
||||
The timestamp file name is constructed using FILENAME, publishing
|
||||
directory PUB-DIR, and PUB-FUNC publishing function."
|
||||
(setq filename (concat filename "::" (or pub-dir "") "::"
|
||||
(format "%s" (or pub-func ""))))
|
||||
(concat "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename))))
|
||||
|
Loading…
Reference in New Issue
Block a user