]> git.eshelyaron.com Git - emacs.git/commit
CC Mode. Fix fontification bug with unterminated quotes on adjacent lines
authorAlan Mackenzie <acm@muc.de>
Sat, 30 Nov 2019 21:22:55 +0000 (21:22 +0000)
committerAlan Mackenzie <acm@muc.de>
Sat, 30 Nov 2019 21:26:00 +0000 (21:26 +0000)
commit757e66afdc1cd4f0a261d368cafd5009e04084a4
tree874f5b30fdca4ca6b234c543bb57d36e5017682f
parent3c278b4999632621ef9690b319798d4ed752b163
CC Mode.  Fix fontification bug with unterminated quotes on adjacent lines

In particular, with these unterminated quotes on each of two adjacent lines,
the following text was spuriously fontified with string face.

* lisp/progmodes/cc-defs.el
(c-search-backward-char-property-with-value-on-char): New macro.

* lisp/progmodes/cc-mode.el (c-clear-string-fences): Check whether there is an
unmatched quote at a lower buffer position which should match the current
quote, rather than wrongly assuming the latter is unmatched and marking it
with a punctuation syntax.
(c-font-lock-fontify-region): Ensure all pertinent parts of the buffer have
string fence properties applied before performing any syntactic operations on
it; in particular, this applies to a quote at an earlier buffer position which
"matches" one inside the region about to be fontified.
lisp/progmodes/cc-defs.el
lisp/progmodes/cc-mode.el