diff options
author | Kyle Meyer <kyle@kyleam.com> | 2024-01-01 12:47:27 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2024-01-01 12:47:27 -0500 |
commit | 7591acfe38e3f5f3fb9b89e2b1ed08723b0298e6 (patch) | |
tree | 36b85337988bb19dbc0c81f29b144d5859d8c824 /lisp/org | |
parent | 240b4594f11ee14c91f4a37d0b3ff4625e79f19c (diff) | |
download | emacs-7591acfe38e3f5f3fb9b89e2b1ed08723b0298e6.tar.gz emacs-7591acfe38e3f5f3fb9b89e2b1ed08723b0298e6.tar.bz2 emacs-7591acfe38e3f5f3fb9b89e2b1ed08723b0298e6.zip |
Update to Org 9.6.15
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/org-entities.el | 21 | ||||
-rw-r--r-- | lisp/org/org-macs.el | 15 | ||||
-rw-r--r-- | lisp/org/org-version.el | 4 | ||||
-rw-r--r-- | lisp/org/org.el | 2 | ||||
-rw-r--r-- | lisp/org/ox-md.el | 2 |
5 files changed, 27 insertions, 17 deletions
diff --git a/lisp/org/org-entities.el b/lisp/org/org-entities.el index 61083022b82..195374e9fff 100644 --- a/lisp/org/org-entities.el +++ b/lisp/org/org-entities.el @@ -41,14 +41,19 @@ (defun org-entities--user-safe-p (v) "Non-nil if V is a safe value for `org-entities-user'." - (pcase v - (`nil t) - (`(,(and (pred stringp) - (pred (string-match-p "\\`[a-zA-Z][a-zA-Z0-9]*\\'"))) - ,(pred stringp) ,(pred booleanp) ,(pred stringp) - ,(pred stringp) ,(pred stringp) ,(pred stringp)) - t) - (_ nil))) + (cond + ((not v) t) + ((listp v) + (seq-every-p + (lambda (e) + (pcase e + (`(,(and (pred stringp) + (pred (string-match-p "\\`[a-zA-Z][a-zA-Z0-9]*\\'"))) + ,(pred stringp) ,(pred booleanp) ,(pred stringp) + ,(pred stringp) ,(pred stringp) ,(pred stringp)) + t) + (_ nil))) + v)))) (defcustom org-entities-user nil "User-defined entities used in Org to produce special characters. diff --git a/lisp/org/org-macs.el b/lisp/org/org-macs.el index 6ed901b7397..fd083ca6250 100644 --- a/lisp/org/org-macs.el +++ b/lisp/org/org-macs.el @@ -56,8 +56,8 @@ by `package-activate-all').") ;; `org-assert-version' calls would fail using strict ;; `org-git-version' check because the generated Org version strings ;; will not match. - `(unless (or org--inhibit-version-check (equal (org-release) ,(org-release))) - (warn "Org version mismatch. Org loading aborted. + `(unless (or ,org--inhibit-version-check (equal (org-release) ,(org-release))) + (warn "Org version mismatch. This warning usually appears when a built-in Org version is loaded prior to the more recent Org version. @@ -91,10 +91,15 @@ Version mismatch is commonly encountered in the following situations: early in the config. Ideally, right after the straight.el bootstrap. Moving `use-package' :straight declaration may not be sufficient if the corresponding `use-package' statement is - deferring the loading." + deferring the loading. + +4. A new Org version is synchronized with Emacs git repository and + stale .elc files are still left from the previous build. + + It is recommended to remove .elc files from lisp/org directory and + re-compile." ;; Avoid `warn' replacing "'" with "’" (see `format-message'). - "(straight-use-package 'org)") - (error "Org version mismatch. Make sure that correct `load-path' is set early in init.el"))) + "(straight-use-package 'org)"))) ;; We rely on org-macs when generating Org version. Checking Org ;; version here will interfere with Org build process. diff --git a/lisp/org/org-version.el b/lisp/org/org-version.el index 8eebdbe09b2..b41756ac53e 100644 --- a/lisp/org/org-version.el +++ b/lisp/org/org-version.el @@ -5,13 +5,13 @@ (defun org-release () "The release version of Org. Inserted by installing Org mode or when a release is made." - (let ((org-release "9.6.13")) + (let ((org-release "9.6.15")) org-release)) ;;;###autoload (defun org-git-version () "The Git version of Org mode. Inserted by installing Org or when a release is made." - (let ((org-git-version "release_9.6.13")) + (let ((org-git-version "release_9.6.15")) org-git-version)) (provide 'org-version) diff --git a/lisp/org/org.el b/lisp/org/org.el index b94dcd07b9a..7917baf4c46 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el @@ -9,7 +9,7 @@ ;; URL: https://orgmode.org ;; Package-Requires: ((emacs "26.1")) -;; Version: 9.6.13 +;; Version: 9.6.15 ;; This file is part of GNU Emacs. ;; diff --git a/lisp/org/ox-md.el b/lisp/org/ox-md.el index 5be0ca22e07..ec8e3c53ec0 100644 --- a/lisp/org/ox-md.el +++ b/lisp/org/ox-md.el @@ -305,7 +305,7 @@ INFO is a plist used as a communication channel." (section-title (org-html--translate "Footnotes" info))) (when fn-alist (format (plist-get info :md-footnotes-section) - (org-md--headline-title headline-style 1 section-title) + (org-md--headline-title headline-style (plist-get info :md-toplevel-hlevel) section-title) (mapconcat (lambda (fn) (org-md--footnote-formatted fn info)) fn-alist "\n"))))) |