Merge branch 'bugfix'

This commit is contained in:
Ihor Radchenko 2023-01-26 12:21:17 +03:00
commit 6001313b8f
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@
;; `org-git-version' check because the generated Org version strings ;; `org-git-version' check because the generated Org version strings
;; will not match. ;; will not match.
`(unless (equal (org-release) ,(org-release)) `(unless (equal (org-release) ,(org-release))
(warn "Org version mismatch. Make sure that correct `load-path' is set early in init.el (warn "Org version mismatch. Org loading aborted.
This warning usually appears when a built-in Org version is loaded This warning usually appears when a built-in Org version is loaded
prior to the more recent Org version. prior to the more recent Org version.

View File

@ -6683,14 +6683,14 @@ see.
Optional argument POST-PROCESS is a function which should accept Optional argument POST-PROCESS is a function which should accept
no argument. It is always called within the current process, no argument. It is always called within the current process,
from BUFFER, with point at its beginning. Export back-ends can from BUFFER, with point at its beginning. Export back-ends can
use it to set a major mode there, e.g, use it to set a major mode there, e.g.,
(defun org-latex-export-as-latex (defun org-latex-export-as-latex
(&optional async subtreep visible-only body-only ext-plist) (&optional async subtreep visible-only body-only ext-plist)
(interactive) (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 async subtreep visible-only body-only ext-plist
#'LaTeX-mode)) #\\='LaTeX-mode))
When expressed as an anonymous function, using `lambda', When expressed as an anonymous function, using `lambda',
POST-PROCESS needs to be quoted. POST-PROCESS needs to be quoted.