bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#35815: 26.2; mhtml-mode (in HTML+CSS and HTML+JS) doesn't respect Wh


From: Tom Tromey
Subject: bug#35815: 26.2; mhtml-mode (in HTML+CSS and HTML+JS) doesn't respect Whitespace Mode face settings
Date: Mon, 25 May 2020 10:27:43 -0600
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Andrew> However, MHTML Mode, within CSS or JavaScript blocks, doesn't respect
Andrew> these settings. The dots representing all spaces display in the default
Andrew> foreground color, or in the color of the nearest highlighted text
Andrew> token.

I think the bug here is that whitespace mode ultimately calls
font-lock-add-keywords to do its work.  However, mhtml-mode captures the
value of font-lock-keywords on a per-submode basis.  So, the change is
not detected.

mhtml probably needs some form of indirection in font-lock-keywords, so
it can apply the subregion matchers as well as any introduced by other modes.
I'm not sure there's a way to do this today.  The easiest would be some
form of a function in the list, where the function would return
font-lock-keywords rather than matches.

Tom





reply via email to

[Prev in Thread] Current Thread [Next in Thread]