* Two CC Mode bug fixes into the release branch?
@ 2022-07-02 14:06 Alan Mackenzie
2022-07-02 14:41 ` Eli Zaretskii
0 siblings, 1 reply; 5+ messages in thread
From: Alan Mackenzie @ 2022-07-02 14:06 UTC (permalink / raw)
To: emacs-devel
Hello, Emacs.
I think it would be right to put two recent CC Mode bug fixes into the
release branch.
The first is bug #53605 (from Richard Copley in January) which has just
been reported again by somebody else on bug-cc-mode@gnu.org. The
problem is that the C++ line
operator""_hexstring()
gets parsed as
operatoR""_hexstring()
and handled wrongly as a raw string. The solution to this bug is to
bind case-fold-search to nil in one place.
This was fixed in the master branch in February. It would seem that
this is likely to happen quite a lot, so maybe the fix should be copied
into the release branch now.
The second is bug #56256 where an unusual set of circumstances (a C++
lambda form being opened in a #define) causes Emacs to lock up hard.
The solution is simple (as these things often are), replacing a call to
c-backward-token-2 with a save-excursion and a goto-char.
This may not happen often, but the consequence would appear serious
enough to warrant fixing the bug in the emacs-28 branch.
Should I put either of these fixes into the release branch?
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Two CC Mode bug fixes into the release branch?
2022-07-02 14:06 Two CC Mode bug fixes into the release branch? Alan Mackenzie
@ 2022-07-02 14:41 ` Eli Zaretskii
2022-07-02 15:18 ` Alan Mackenzie
0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2022-07-02 14:41 UTC (permalink / raw)
To: Alan Mackenzie; +Cc: emacs-devel
> Date: Sat, 2 Jul 2022 14:06:12 +0000
> From: Alan Mackenzie <acm@muc.de>
>
> The first is bug #53605 (from Richard Copley in January) which has just
> been reported again by somebody else on bug-cc-mode@gnu.org. The
> problem is that the C++ line
>
> operator""_hexstring()
>
> gets parsed as
>
> operatoR""_hexstring()
>
> and handled wrongly as a raw string. The solution to this bug is to
> bind case-fold-search to nil in one place.
Please tell which commit you want to cherry-pick. I'd like to be sure
we are talking about the same thing.
> The second is bug #56256 where an unusual set of circumstances (a C++
> lambda form being opened in a #define) causes Emacs to lock up hard.
>
> The solution is simple (as these things often are), replacing a call to
> c-backward-token-2 with a save-excursion and a goto-char.
>
> This may not happen often, but the consequence would appear serious
> enough to warrant fixing the bug in the emacs-28 branch.
Is the change you want to install the same one shown in the discussion
of that bug? If not, please show the change.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Two CC Mode bug fixes into the release branch?
2022-07-02 14:41 ` Eli Zaretskii
@ 2022-07-02 15:18 ` Alan Mackenzie
2022-07-02 15:26 ` Eli Zaretskii
0 siblings, 1 reply; 5+ messages in thread
From: Alan Mackenzie @ 2022-07-02 15:18 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: emacs-devel
Hello, Eli.
On Sat, Jul 02, 2022 at 17:41:43 +0300, Eli Zaretskii wrote:
> > Date: Sat, 2 Jul 2022 14:06:12 +0000
> > From: Alan Mackenzie <acm@muc.de>
> > The first is bug #53605 (from Richard Copley in January) which has just
> > been reported again by somebody else on bug-cc-mode@gnu.org. The
> > problem is that the C++ line
> > operator""_hexstring()
> > gets parsed as
> > operatoR""_hexstring()
> > and handled wrongly as a raw string. The solution to this bug is to
> > bind case-fold-search to nil in one place.
> Please tell which commit you want to cherry-pick. I'd like to be sure
> we are talking about the same thing.
OK, this commit:
commit cf9c40159a6bef5a23f7b23a45c03f0c6be57574
Author: Alan Mackenzie <acm@muc.de>
Date: Mon Jan 31 17:44:59 2022 +0000
* lisp/progmodes/cc-mode.el (c-common-init): Bind case-fold-search to nil
This fixes bug #53605.
It is best viewed with a -b flag, as in $ git show -b cf9c40159a.
> > The second is bug #56256 where an unusual set of circumstances (a C++
> > lambda form being opened in a #define) causes Emacs to lock up hard.
> > The solution is simple (as these things often are), replacing a call to
> > c-backward-token-2 with a save-excursion and a goto-char.
> > This may not happen often, but the consequence would appear serious
> > enough to warrant fixing the bug in the emacs-28 branch.
> Is the change you want to install the same one shown in the discussion
> of that bug? If not, please show the change.
Yes, it's the change I send off to the OP on 2022-06-29, asking him/her
to test it.
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Two CC Mode bug fixes into the release branch?
2022-07-02 15:18 ` Alan Mackenzie
@ 2022-07-02 15:26 ` Eli Zaretskii
2022-07-02 15:33 ` Alan Mackenzie
0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2022-07-02 15:26 UTC (permalink / raw)
To: Alan Mackenzie; +Cc: emacs-devel
> Date: Sat, 2 Jul 2022 15:18:04 +0000
> Cc: emacs-devel@gnu.org
> From: Alan Mackenzie <acm@muc.de>
>
> > Please tell which commit you want to cherry-pick. I'd like to be sure
> > we are talking about the same thing.
>
> OK, this commit:
>
> commit cf9c40159a6bef5a23f7b23a45c03f0c6be57574
> Author: Alan Mackenzie <acm@muc.de>
> Date: Mon Jan 31 17:44:59 2022 +0000
>
> * lisp/progmodes/cc-mode.el (c-common-init): Bind case-fold-search to nil
>
> This fixes bug #53605.
This is okay for the release branch.
> > Is the change you want to install the same one shown in the discussion
> > of that bug? If not, please show the change.
>
> Yes, it's the change I send off to the OP on 2022-06-29, asking him/her
> to test it.
Also okay.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Two CC Mode bug fixes into the release branch?
2022-07-02 15:26 ` Eli Zaretskii
@ 2022-07-02 15:33 ` Alan Mackenzie
0 siblings, 0 replies; 5+ messages in thread
From: Alan Mackenzie @ 2022-07-02 15:33 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: emacs-devel
Hello, Eli.
On Sat, Jul 02, 2022 at 18:26:49 +0300, Eli Zaretskii wrote:
> > Date: Sat, 2 Jul 2022 15:18:04 +0000
> > Cc: emacs-devel@gnu.org
> > From: Alan Mackenzie <acm@muc.de>
> > > Please tell which commit you want to cherry-pick. I'd like to be sure
> > > we are talking about the same thing.
> > OK, this commit:
> > commit cf9c40159a6bef5a23f7b23a45c03f0c6be57574
> > Author: Alan Mackenzie <acm@muc.de>
> > Date: Mon Jan 31 17:44:59 2022 +0000
> > * lisp/progmodes/cc-mode.el (c-common-init): Bind case-fold-search to nil
> > This fixes bug #53605.
> This is okay for the release branch.
> > > Is the change you want to install the same one shown in the discussion
> > > of that bug? If not, please show the change.
> > Yes, it's the change I send off to the OP on 2022-06-29, asking him/her
> > to test it.
> Also okay.
Thanks. I'll do these this afternoon.
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-07-02 15:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-02 14:06 Two CC Mode bug fixes into the release branch? Alan Mackenzie
2022-07-02 14:41 ` Eli Zaretskii
2022-07-02 15:18 ` Alan Mackenzie
2022-07-02 15:26 ` Eli Zaretskii
2022-07-02 15:33 ` Alan Mackenzie
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).