update packages

This commit is contained in:
2026-06-27 11:34:21 +02:00
parent 4be4f859c4
commit 1aaef48596
246 changed files with 7997 additions and 4359 deletions

View File

@@ -6,8 +6,8 @@
;; Author: Jason R. Blevins <jblevins@xbeta.org>
;; Maintainer: Jason R. Blevins <jblevins@xbeta.org>
;; Created: May 24, 2007
;; Package-Version: 20260321.143
;; Package-Revision: 182640f79c3e
;; Package-Version: 20260425.954
;; Package-Revision: 1f72cefa6a4b
;; Package-Requires: ((emacs "28.1"))
;; Keywords: Markdown, GitHub Flavored Markdown, itex
;; URL: https://jblevins.org/projects/markdown-mode/
@@ -2931,22 +2931,21 @@ This may be useful for tables and Pandoc's line_blocks extension."
"Return t if PROP from BEGIN to END is equal to one of the given PROP-VALUES.
Also returns t if PROP is a list containing one of the PROP-VALUES.
Return nil otherwise."
(let (props)
(catch 'found
(dolist (loc (number-sequence begin end))
(when (setq props (get-text-property loc prop))
(cond ((listp props)
;; props is a list, check for membership
(dolist (val prop-values)
(when (memq val props) (throw 'found loc))))
(t
;; props is a scalar, check for equality
(dolist (val prop-values)
(when (eq val props) (throw 'found loc))))))))))
(catch 'found
(let ((loc begin))
(while (<= loc end)
(when-let* ((props (get-text-property loc prop)))
(if (listp props)
;; props is a list, check for membership
(dolist (val prop-values)
(when (memq val props) (throw 'found loc)))
(dolist (val prop-values)
(when (eq val props) (throw 'found loc)))))
(setq loc (next-single-property-change loc prop nil (1+ end)))))))
(defun markdown-range-properties-exist (begin end props)
(cl-loop
for loc in (number-sequence begin end)
for loc from begin to end
with result = nil
while (not
(setq result