emacs-devel
[Top][All Lists]
Advanced

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

Re: [Emacs-diffs] emacs-24 d69e9f1: CC Mode: Stop Font Lock forcing font


From: Alan Mackenzie
Subject: Re: [Emacs-diffs] emacs-24 d69e9f1: CC Mode: Stop Font Lock forcing fontification from BOL. Fixes debbugs#19669.
Date: Thu, 19 Mar 2015 09:31:11 +0000
User-agent: Mutt/1.5.23 (2014-03-12)

Hello, Daniel.

On Wed, Mar 18, 2015 at 08:34:19PM -0700, Daniel Colascione wrote:
> On 03/18/2015 05:08 AM, Alan Mackenzie wrote:
> > On Mon, Mar 16, 2015 at 04:53:28PM -0700, Daniel Colascione wrote:
> >> On 02/01/2015 01:22 PM, Alan Mackenzie wrote:
> >>> branch: emacs-24
> >>> commit d69e9f1c24f37f36af33b0468c5a4e100dbb09b6
> >>> Author: Alan Mackenzie <address@hidden>
> >>> Commit: Alan Mackenzie <address@hidden>

> >>>     CC Mode: Stop Font Lock forcing fontification from BOL.  Fixes 
> >>> debbugs#19669.

> >>>     cc-mode.el (c-font-lock-init): Setq font-lock-extend-region-functions 
> >>> to
> >>>     nil.

> >> This change is driving me nuts.  Consider the following buffer, with @
> >> representing point:

> >> void foo() {
> >>   @
> >> }

> >> If I type [f o r SPC], then depending on timing, I see only the "or", or
> >> only the "r", fontified in font-lock-keyword-face. A moment later,
> >> jit-lock kicks in and refontifies the entire chunk properly.

> > Sorry about this.

> >> Can we please extend the start of the region back to at least the last `}'?

> > This could be a tricky one to solve.  For the sake of your sanity, please
> > consider applying the following temporary patch; it "solves" the current
> > problem, but unfortunately leaves bug #19669's symptoms apparent again.

> I've been doing the equivalent in a mode hook. I'm not sure that
> reverting to the previous behavior is the right thing either.
> Fundamentally, it just feels wrong that the solution to any
> fontification correctness bug should be to fontify less.

The problem in #19669 was that Font Lock's extension of the region to be
font locked to the beginning of the line was changing the syntactic
context, hence CC Mode's font locking didn't work in that case.  The
solution was to prevent that extension in the pertinent case.  However, I
got it wrong.

The solution I'm looking at at the moment is to allow Font Lock to extend
to BOL except where CC Mode itself has extended the region for syntactic
reasons.  As I said, it's tricky.

Fundamentally, the problem is that Font Lock doesn't distinguish between
the region which needs fontifying, and the region which supplies the
syntactic context.

-- 
Alan Mackenzie (Nuremberg, Germany).



reply via email to

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