]> git.eshelyaron.com Git - emacs.git/commitdiff
; Minor change in c-ts-common--fill-block-comment
authorYuan Fu <casouri@gmail.com>
Wed, 7 Aug 2024 04:54:20 +0000 (21:54 -0700)
committerEshel Yaron <me@eshelyaron.com>
Sun, 11 Aug 2024 07:27:09 +0000 (09:27 +0200)
* lisp/progmodes/c-ts-common.el:
(c-ts-common--fill-block-comment): Add check for end-mask-done.  This
doesn't affect correctness, but makes the code easier to read.

(cherry picked from commit 458a79b3c7eb164e254f86d5610418ffd5050fec)

lisp/progmodes/c-ts-common.el

index 674623a5e6185fd4109890dc51bbdc7d0922a487..740c5e28747a9cf7318b0da0c8af4f6d01484b03 100644 (file)
@@ -206,7 +206,7 @@ comment."
         (fill-region (max start-marker para-start) (min end para-end) arg))
 
       ;; Unmask.
-      (when end-marker
+      (when (and end-marker end-mask-done)
         (goto-char end-marker)
         (delete-region (point) (+ end-len (point)))
         (insert (make-string end-len ?\s)))