update packages

This commit is contained in:
2025-11-25 19:52:03 +01:00
parent 14ba373378
commit dbbae92267
280 changed files with 13451 additions and 11207 deletions

View File

@@ -162,7 +162,7 @@ environments)."
(org-element-property :name e)
(string= "lemma" (org-element-property :type e)))
(org-element-property :name e))
((and (eq type 'corollary)
(org-element-property :name e)
(string= "corollary" (org-element-property :type e)))
@@ -176,11 +176,11 @@ environments)."
;; Listings of code blocks
('src-block
(when-let (name (org-element-property :name e))
(when-let* ((name (org-element-property :name e)))
name)))))))))
;; the align equation environment needs to be flattened
(cl-loop for type in referencables
collect (cons (car type) (-flatten (cdr type))))))
collect (cons (car type) (org-ref--flatten-list (cdr type))))))
(defun org-ref-refproc-get-type (label referenceables)
@@ -351,7 +351,7 @@ REFERENCEABLES comes from `org-ref-refproc-referenceables'.
If CAPITALIZE is non-nil, capitalize the first entry (this is for
Cref) and is different than the capitalize option in #+refproc:
which capitalizes each prefix."
(let* ((options (org-ref-refproc-get-options))
(let* ((options (org-ref-refproc-get-options))
(labels (split-string (org-element-property :path ref-link) ","))
(post-blanks (org-element-property :post-blank ref-link))
(data (cl-loop for label in labels collect (org-ref-refproc-get-type label referenceables)))