(font-lock-fontify-syntactically-region):
Pass t for GREEDY to looking-back.
This commit is contained in:
parent
cfde584f6d
commit
a159470388
1 changed files with 1 additions and 1 deletions
|
@ -1351,7 +1351,7 @@ START should be at the beginning of a line."
|
|||
comment-start-skip))
|
||||
(put-text-property beg (match-end 0) 'face
|
||||
font-lock-comment-delimiter-face)))
|
||||
(if (looking-back comment-end-regexp (point-at-bol))
|
||||
(if (looking-back comment-end-regexp (point-at-bol) t)
|
||||
(put-text-property (match-beginning 0) (point) 'face
|
||||
font-lock-comment-delimiter-face))))
|
||||
(< (point) end))
|
||||
|
|
Loading…
Add table
Reference in a new issue