From: Alan Mackenzie <acm@muc.de>
To: Jim Porter <jporterbugs@gmail.com>
Cc: 50538@debbugs.gnu.org
Subject: bug#50538: [PATCH] 28.0.50; electric-pair-mode fails to pair double quotes in some cases in CC mode
Date: Fri, 17 Sep 2021 17:08:33 +0000 [thread overview]
Message-ID: <YUTLkQr79kmGLOGC@ACM> (raw)
In-Reply-To: <456ed31d-77dc-cc2d-2fe9-8fcd379e04c6@gmail.com>
Hello, Jim.
On Thu, Sep 16, 2021 at 14:36:06 -0700, Jim Porter wrote:
> On 9/16/2021 1:49 PM, Alan Mackenzie wrote:
> > There were two or three minor problems with the patch:
> > 1-/. CC Mode doesn't use syntax-ppss at all. This was because way back
> > when, syntax-ppss was buggy, and even now doesn't do the right thing for
> > CC Mode in some edge cases (e.g. with the buffer narrowed and point-min
> > inside a string or comment). Instead it uses its own internal syntactic
> > cacheing, largely centred around the function c-semi-pp-to-literal.
> > 2/- Rather than using get-text-property and friends directly, CC Mode
> > uses the macros c-get-char-property, etc. This is (?was) to maintain
> > compatibility with XEmacs.
> > 3/- (A bit more serious) The patch looks for the last " in the current
> > line without taking account of any escaped new lines. There is already
> > a CC Mode macro which does all the work here, c-point, which can be given
> > the argument 'eoll for "end of logical line".
> Thanks, I've incorporated all these changes into the attached patch. The
> only difference between my patch and the version you provided was to
> keep the `(search-backward "\"")' portion from my patch, since the code
> needs to find the last double-quote, not the end of line.
Duh! Sorry about that, I clean forgot about it. I did say that I
hadn't tested it, though. ;-)
> As an aside, it's probably worth explaining why my patch searches for
> the last double-quote in the first place. As far as I understand CC
> Mode, when there's an unterminated double-quote on a line, both the
> quote and the newline have a string fence property applied to them.
Yes.
> This means we could check the newline for that property, *but* there's
> no guarantee a newline actually exists: `(c-point 'eoll)' could
> actually point to the end of the buffer. To get around that, we search
> backwards for the last double-quote of the (logical) line, since
> that's guaranteed to exist.
Yes. This is a very important case, the one that occurs when somebody's
typing a new file, or at the end of an existing one.
> If we wanted to, we could avoid searching backwards for the last
> double-quote when a newline exists, but I'm not sure the gain in
> performance (likely very small) is worth the extra code complexity.
I'm fairly sure it wouldn't be.
[ Patch snipped but read. ]
--
Alan Mackenzie (Nuremberg, Germany).
next prev parent reply other threads:[~2021-09-17 17:08 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-12 3:58 bug#50538: [PATCH] 28.0.50; electric-pair-mode fails to pair double quotes in some cases in CC mode Jim Porter
2021-09-12 6:26 ` Eli Zaretskii
2021-09-12 18:05 ` Jim Porter
2021-09-15 22:17 ` Jim Porter
2021-09-16 5:25 ` Eli Zaretskii
2021-09-16 12:40 ` Lars Ingebrigtsen
2021-09-16 12:59 ` Dmitry Gutov
2021-09-16 13:17 ` Lars Ingebrigtsen
2021-09-16 17:04 ` João Távora
2021-09-16 17:11 ` Eli Zaretskii
2021-09-16 17:33 ` João Távora
2021-09-16 17:29 ` Jim Porter
2021-09-16 19:05 ` Alan Mackenzie
2021-09-16 20:51 ` João Távora
2021-09-17 18:12 ` Alan Mackenzie
2021-09-16 18:26 ` Alan Mackenzie
2021-09-16 20:49 ` Alan Mackenzie
2021-09-16 21:36 ` Jim Porter
2021-09-17 17:08 ` Alan Mackenzie [this message]
2021-09-23 2:01 ` bug#50538: [PATCH v3] " Jim Porter
2021-09-26 20:58 ` Alan Mackenzie
2021-09-28 4:57 ` bug#50538: [PATCH v4] " Jim Porter
2021-10-03 17:58 ` bug#50538: [PATCH v5] " Jim Porter
2021-11-06 0:22 ` bug#50538: [PATCH] " Lars Ingebrigtsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YUTLkQr79kmGLOGC@ACM \
--to=acm@muc.de \
--cc=50538@debbugs.gnu.org \
--cc=jporterbugs@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.