update packages

This commit is contained in:
2025-07-05 20:36:47 +02:00
parent 4a4f30e3b1
commit 65dedd3df8
60 changed files with 15454 additions and 342 deletions

View File

@@ -1,10 +1,10 @@
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "markdown-mode" "20250606.314"
(define-package "markdown-mode" "20250624.631"
"Major mode for Markdown-formatted text."
'((emacs "28.1"))
:url "https://jblevins.org/projects/markdown-mode/"
:commit "7c20685df615469132763add897c1ca37cbe07e4"
:revdesc "7c20685df615"
:commit "7c51a2167c5a1330e0ab52fe5b2d03c1ead122ca"
:revdesc "7c51a2167c5a"
:keywords '("markdown" "github flavored markdown" "itex")
:authors '(("Jason R. Blevins" . "jblevins@xbeta.org"))
:maintainers '(("Jason R. Blevins" . "jblevins@xbeta.org")))

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: 20250606.314
;; Package-Revision: 7c20685df615
;; Package-Version: 20250624.631
;; Package-Revision: 7c51a2167c5a
;; Package-Requires: ((emacs "28.1"))
;; Keywords: Markdown, GitHub Flavored Markdown, itex
;; URL: https://jblevins.org/projects/markdown-mode/
@@ -2613,7 +2613,11 @@ Return the point at the end when a list item was found at the
original point. If the point is not in a list item, do nothing."
(let (indent)
(forward-line)
(setq indent (current-indentation))
;; #904 consider a space indentation and tab indentation case
(save-excursion
(let ((pos (point)))
(back-to-indentation)
(setq indent (- (point) pos))))
(while
(cond
;; Stop at end of the buffer.