From e9df837d8af0017f8470c469ef0f49d365729f23 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Wed, 3 Aug 2022 13:13:57 +0200 Subject: [PATCH] Backport commit 0a6e2b3bf from Emacs * lisp/ox.el (org-export-to-file): Fix quoting of #' in doc strings. Fix quoting of #' in some doc strings 0a6e2b3bfce8b5ae9e713e0668cb3cf5609073e2 Lars Ingebrigtsen Wed Aug 3 13:14:32 2022 +0200 --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index 1daa1a333..56bb4b74d 100644 --- a/lisp/ox.el +++ b/lisp/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.