summaryrefslogtreecommitdiff
path: root/lisp/org/ox.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-08-03 13:13:57 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-08-03 13:14:32 +0200
commit0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2 (patch)
treeb85e04fe62a2c784a19facde3fa68c1d7c7794bb /lisp/org/ox.el
parent90addeb2442687c34cd236edead285348d49f4ba (diff)
downloademacs-0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2.tar.gz
Fix quoting of #' in some doc strings
* lisp/org/ox.el (org-export-to-file): * lisp/eshell/esh-arg.el (eshell-concat): * lisp/emacs-lisp/edebug.el (edebug-read-special): * lisp/dired-aux.el (dired-split): Fix quoting of #' in doc strings.
Diffstat (limited to 'lisp/org/ox.el')
-rw-r--r--lisp/org/ox.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/ox.el b/lisp/org/ox.el
index 1bdf4dead89..9a2a69b2c16 100644
--- a/lisp/org/ox.el
+++ b/lisp/org/ox.el
@@ -6479,7 +6479,7 @@ to send the output file through additional processing, e.g,
(let ((outfile (org-export-output-file-name \".tex\" subtreep)))
(org-export-to-file \\='latex outfile
async subtreep visible-only body-only ext-plist
- #'org-latex-compile)))
+ #\\='org-latex-compile)))
When expressed as an anonymous function, using `lambda',
POST-PROCESS needs to be quoted.