0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 21:37:50 +00:00

ox-publish: Fix typo in docstring

* lisp/ox-publish.el (org-publish-cache-get-file-property): Fix typo.
This commit is contained in:
Nicolas Goaziou 2016-11-02 09:16:35 +01:00
parent e010215e82
commit 1dc78402dc

View file

@ -1250,9 +1250,9 @@ will be created. Return VALUE."
(defun org-publish-cache-get-file-property
(filename property &optional default no-create project-name)
"Return the value for a PROPERTY of file FILENAME in publishing cache.
Use cache file of PROJECT-NAME. Return the value of that PROPERTY
or DEFAULT, if the value does not yet exist. If the entry will
be created, unless NO-CREATE is not nil."
Use cache file of PROJECT-NAME. Return the value of that
PROPERTY or DEFAULT, if the value does not yet exist. If the
entry will be created, unless NO-CREATE is not nil."
;; Evtl. load the requested cache file:
(if project-name (org-publish-initialize-cache project-name))
(let ((pl (org-publish-cache-get filename)) retval)