]> git.eshelyaron.com Git - emacs.git/commitdiff
; Add comment to explain recent change
authorStefan Kangas <stefankangas@gmail.com>
Mon, 10 Mar 2025 19:33:47 +0000 (20:33 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:55:20 +0000 (19:55 +0100)
* lisp/vc/log-edit.el (log-edit-font-lock-keywords): Add comment to
explain recent change.  Proposed by Eli Zaretskii <eliz@gnu.org>.
Ref: https://lists.gnu.org/r/emacs-devel/2025-03/msg00587.html

(cherry picked from commit bab17c7fb5161d3ed4820bf51d0cec6ee1cbb525)

lisp/vc/log-edit.el

index 3eb614f6030001663039f05eedcc2bc45814233b..19994508ca72cfdc867efcd6e801953a40eb3a2e 100644 (file)
@@ -458,8 +458,13 @@ The first subexpression is the actual text of the field.")
              'log-edit-header)
          nil lax))
      ("^\n"
-      (and (not (bound-and-true-p git-commit-mode))
-           (progn (goto-char (match-end 0)) (1+ (match-end 0)))) nil
+      (and
+       ;; This fixes a bug with `git-commit-mode', a NonGNU ELPA package
+       ;; used by Magit.  Without this check, we get a wrong display
+       ;; when `git-commit-major-mode' is set to `log-edit-mode'.
+       (not (bound-and-true-p git-commit-mode))
+       (progn (goto-char (match-end 0)) (1+ (match-end 0))))
+      nil
       (0 '( face log-edit-headers-separator
             display-line-numbers-disable t rear-nonsticky t))))
     (log-edit--match-first-line (0 'log-edit-summary))))