; Minor fix in c-ts-common--fill-block-comment
* lisp/progmodes/c-ts-common.el: (c-ts-common--fill-block-comment): Checking for end-mask done is equivalent to checking end-marker, so the original code doesn't have a bug.
This commit is contained in:
parent
679f7ccc49
commit
cd9a215ef0
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ comment."
|
|||
(goto-char start-marker)
|
||||
(delete-char 1)
|
||||
(insert "/"))
|
||||
(when (and end-mask-done start-marker)
|
||||
(when (and end-mask-done end-marker)
|
||||
(goto-char end-marker)
|
||||
(delete-region (point) (+ end-len (point)))
|
||||
(insert (make-string end-len ?\s)))
|
||||
|
|
Loading…
Add table
Reference in a new issue