summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-08-27 10:29:50 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-08-27 10:32:59 +0200
commite7c8872005ef3ade5a5a3d1a73fe1d26b7c4560d (patch)
treef6899fc6a234b31182cb7386bfa2a1dfe55f4a38
parent69b20f36fef309d9172625b82f995d643bed9fa1 (diff)
downloadorg-mode-e7c8872005ef3ade5a5a3d1a73fe1d26b7c4560d.tar.gz
ox: Fix docstrings
* lisp/ox.el (org-export-to-buffer, org-export-to-file): Fix docstrings.
-rw-r--r--lisp/ox.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index 12a7475..66f0df4 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -5544,9 +5544,9 @@ EXT-PLIST are similar to those used in `org-export-as', which
see.
Optional argument POST-PROCESS is a function which should accept
-no argument. It is called within the current process, from
-BUFFER, with point at its beginning. Export back-ends can use it
-to set a major mode there, e.g,
+no argument. It is always called within the current process,
+from BUFFER, with point at its beginning. Export back-ends can
+use it to set a major mode there, e.g,
\(defun org-latex-export-as-latex
\(&optional async subtreep visible-only body-only ext-plist)
@@ -5604,9 +5604,9 @@ EXT-PLIST are similar to those used in `org-export-as', which
see.
Optional argument POST-PROCESS is called with FILE as its
-argument, in the asynchronous process. It has to return a file
-name, or nil. Export back-ends can use this to send the output
-file through additional processing, e.g,
+argument and happens asynchronously when ASYNC is non-nil. It
+has to return a file name, or nil. Export back-ends can use this
+to send the output file through additional processing, e.g,
\(defun org-latex-export-to-latex
\(&optional async subtreep visible-only body-only ext-plist)