mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
; Minor change in c-ts-common--fill-block-comment
* 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.
This commit is contained in:
parent
1a4c26d413
commit
458a79b3c7
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,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)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue