GNU bug report logs -
#63323
c-ts-mode does not know about `restrict'
Previous Next
Reported by: Po Lu <luangruo <at> yahoo.com>
Date: Sat, 6 May 2023 08:20:02 UTC
Severity: normal
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 07 May 2023 08:14:25 +0300
with message-id <831qjsg1u6.fsf <at> gnu.org>
and subject line Re: bug#63323: c-ts-mode does not know about `restrict'
has caused the debbugs.gnu.org bug report #63323,
regarding c-ts-mode does not know about `restrict'
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
63323: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=63323
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Standard C accepts a keyword `restrict', which is used to declare
pointers whose referenced object must only be accessed by lvalues based
upon one such pointer within the block where they are declared.
Like so:
argb *restrict src, *restrict dest;
c-ts-mode does not understand this keyword. It is not fontified within
such declarations.
[Message part 3 (message/rfc822, inline)]
> From: Yuan Fu <casouri <at> gmail.com>
> Date: Sat, 6 May 2023 15:54:32 -0700
> Cc: luangruo <at> yahoo.com,
> 63323 <at> debbugs.gnu.org
>
>
>
> > Actually, it looks like we recognize the type qualifiers in C as
> > keywords, via a separate list. So I've just added to that list the
> > two missing qualifiers: 'restrict' and '_Atomic', and that fixes this
> > bug for me.
> >
> > Yuan, is that the right fix? I've installed it on the emacs-29
> > branch.
>
> I check tree-sitter-c’s grammar and it defines type_qualifier [1], so if you move (type_qualifier) @font-lock-type-face out of the check for cpp, if would work. Recognizing them as keywords also works. So both are technically correct. C-mode uses keyword face, so I think your fix is a-ok.
>
> [1] you probably know this, but for completeness:
>
> type_qualifier: $ => choice(
> 'const',
> 'volatile',
> 'restrict',
> '_Atomic'
> ),
Right, they just copied from the C Standard.
Whether we want to stay with qualifiers in keywords or not depends on
whether we thing type qualifiers could or should be fontified
differently from keywords. (What do other IDEs do with C type
qualifiers?) Something to think for the future, I guess.
For now, I'm closing this bug.
This bug report was last modified 2 years and 95 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.