1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 15:21:46 +00:00

Update to Org 9.5.4-3-g6dc785

This commit is contained in:
Kyle Meyer 2022-06-26 23:00:38 -04:00
parent c66b90a534
commit 48bda83d35
2 changed files with 9 additions and 2 deletions

View File

@ -189,7 +189,14 @@ Return a hash table with citation references as keys and fields alist as values.
(cons 'year
(cond
((consp date)
(caar date))
(let ((year (caar date)))
(cond
((numberp year) (number-to-string year))
((stringp year) year)
(t
(error
"First element of CSL-JSON date-parts should be a number or string, got %s: %S"
(type-of year) year)))))
((stringp date)
(replace-regexp-in-string
(rx

View File

@ -11,7 +11,7 @@ Inserted by installing Org mode or when a release is made."
(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.5.4"))
(let ((org-git-version "release_9.5.4-3-g6dc785"))
org-git-version))
(provide 'org-version)