diff options
Diffstat (limited to 'lisp/org/ox.el')
-rw-r--r-- | lisp/org/ox.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/org/ox.el b/lisp/org/ox.el index efac2f8e18c..a0573d04c10 100644 --- a/lisp/org/ox.el +++ b/lisp/org/ox.el @@ -1180,12 +1180,12 @@ keywords are understood: As an example, here is how one could define \"my-latex\" back-end as a variant of `latex' back-end with a custom template function: - \(org-export-define-derived-backend 'my-latex 'latex - :translate-alist '((template . my-latex-template-fun))) + \(org-export-define-derived-backend \\='my-latex \\='latex + :translate-alist \\='((template . my-latex-template-fun))) The back-end could then be called with, for example: - \(org-export-to-buffer 'my-latex \"*Test my-latex*\")" + \(org-export-to-buffer \\='my-latex \"*Test my-latex*\")" (declare (indent 2)) (let (blocks filters menu-entry options transcoders contents) (while (keywordp (car body)) @@ -5553,7 +5553,7 @@ and `org-export-to-file' for more specialized functions." (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) - (message "Process '%s' exited abnormally" p)) + (message "Process ā%sā exited abnormally" p)) (unless org-export-async-debug (delete-file ,,temp-file))))))))))))) @@ -5589,7 +5589,7 @@ 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) \(interactive) - \(org-export-to-buffer 'latex \"*Org LATEX Export*\" + \(org-export-to-buffer \\='latex \"*Org LATEX Export*\" async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode)))) This function returns BUFFER." @@ -5650,7 +5650,7 @@ to send the output file through additional processing, e.g, \(&optional async subtreep visible-only body-only ext-plist) \(interactive) \(let ((outfile (org-export-output-file-name \".tex\" subtreep))) - \(org-export-to-file 'latex outfile + \(org-export-to-file \\='latex outfile async subtreep visible-only body-only ext-plist \(lambda (file) (org-latex-compile file))) |