diff options
Diffstat (limited to '.emacs.d/lisp/markdown-mode.el')
| -rw-r--r-- | .emacs.d/lisp/markdown-mode.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.emacs.d/lisp/markdown-mode.el b/.emacs.d/lisp/markdown-mode.el index 4bb1a57..cd066a8 100644 --- a/.emacs.d/lisp/markdown-mode.el +++ b/.emacs.d/lisp/markdown-mode.el | |||
| @@ -1,12 +1,12 @@ | |||
| 1 | ;;; markdown-mode.el --- Major mode for Markdown-formatted text -*- lexical-binding: t; -*- | 1 | ;;; markdown-mode.el --- Major mode for Markdown-formatted text -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2007-2022 Jason R. Blevins and markdown-mode | 3 | ;; Copyright (C) 2007-2023 Jason R. Blevins and markdown-mode |
| 4 | ;; contributors (see the commit log for details). | 4 | ;; contributors (see the commit log for details). |
| 5 | 5 | ||
| 6 | ;; Author: Jason R. Blevins <jblevins@xbeta.org> | 6 | ;; Author: Jason R. Blevins <jblevins@xbeta.org> |
| 7 | ;; Maintainer: Jason R. Blevins <jblevins@xbeta.org> | 7 | ;; Maintainer: Jason R. Blevins <jblevins@xbeta.org> |
| 8 | ;; Created: May 24, 2007 | 8 | ;; Created: May 24, 2007 |
| 9 | ;; Version: 2.6-alpha | 9 | ;; Version: 2.7-alpha |
| 10 | ;; Package-Requires: ((emacs "27.1")) | 10 | ;; Package-Requires: ((emacs "27.1")) |
| 11 | ;; Keywords: Markdown, GitHub Flavored Markdown, itex | 11 | ;; Keywords: Markdown, GitHub Flavored Markdown, itex |
| 12 | ;; URL: https://jblevins.org/projects/markdown-mode/ | 12 | ;; URL: https://jblevins.org/projects/markdown-mode/ |
| @@ -55,7 +55,7 @@ | |||
| 55 | 55 | ||
| 56 | ;;; Constants ================================================================= | 56 | ;;; Constants ================================================================= |
| 57 | 57 | ||
| 58 | (defconst markdown-mode-version "2.6-alpha" | 58 | (defconst markdown-mode-version "2.7-alpha" |
| 59 | "Markdown mode version number.") | 59 | "Markdown mode version number.") |
| 60 | 60 | ||
| 61 | (defconst markdown-output-buffer-name "*markdown-output*" | 61 | (defconst markdown-output-buffer-name "*markdown-output*" |
| @@ -1317,6 +1317,7 @@ giving the bounds of the current and parent list items." | |||
| 1317 | (not (eobp))) | 1317 | (not (eobp))) |
| 1318 | (forward-line)) | 1318 | (forward-line)) |
| 1319 | (skip-syntax-backward "-") | 1319 | (skip-syntax-backward "-") |
| 1320 | (forward-line) | ||
| 1320 | (setq close (point))) | 1321 | (setq close (point))) |
| 1321 | ;; If current line has a list marker, update levels, move to end of block | 1322 | ;; If current line has a list marker, update levels, move to end of block |
| 1322 | ((looking-at markdown-regex-list) | 1323 | ((looking-at markdown-regex-list) |
