branch: externals/org commit fd195266dd004b84689141aa491b48ef3a3c7d81 Author: Bastien <b...@gnu.org> Commit: Bastien <b...@gnu.org>
lisp/org-macs.el: Minor docstring enhancements * lisp/org-macs.el (org-assert-version): Minor docstring enhancements. --- lisp/org-macs.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/org-macs.el b/lisp/org-macs.el index e7e6b0e009..987afe5ed6 100644 --- a/lisp/org-macs.el +++ b/lisp/org-macs.el @@ -37,17 +37,18 @@ ;;; Org version verification. (defmacro org-assert-version () - "Assert compile time and runtime verstion match." + "Assert compile time and runtime version match." `(unless (equal (org-git-version) ,(org-git-version)) (warn "Org version mismatch. Make sure that correct `load-path' is set early in init.el This warning usually appears when a built-in Org version is loaded prior to the more recent Org version. Version mismatch is commonly encountered in the following situations: + 1. Emacs is loaded using literate Org config and more recent Org version is loaded inside the file loaded by `org-babel-load-file'. `org-babel-load-file' triggers the built-in Org version clashing - the newer Org version attempted to be loaded later. + the newer Org version attempt to be loaded later. It is recommended to move the Org loading code before the `org-babel-load-file' call.