From: haj@posteo.de (Harald Jörg)
To: Lars Ingebrigtsen <larsi@gnus.org>
Cc: 46889@debbugs.gnu.org, "Mattias Engdegård" <mattiase@acm.org>
Subject: bug#46889: cperl-mode: Fix indentation issues [PATCH]
Date: Thu, 04 Mar 2021 19:19:42 +0100 [thread overview]
Message-ID: <87ft1au6gx.fsf@hajtower> (raw)
In-Reply-To: <87tupqvn9i.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 04 Mar 2021 18:31:37 +0100")
Lars Ingebrigtsen <larsi@gnus.org> writes:
> [...]
>> Many thanks to Mattias Engdegård for his patient explanations how rx
>> expressions can be used without breaking compatibility to Emacs 26.1.
>> Until now, this allowed two ugly regexp literals to be eliminated.
>
> Funnily enough, that's the one thing I was going to ask you about with
> this patch.
>
> I'm not an experienced rx user -- at all -- but is this the best way to
> do this?
>
>> +(eval-and-compile
>> + (defconst cperl--ws-rx
>> + '(sequence (or space "\n"))
>
> It was the eval-and-compile that made me look at this bit...
I am not an experienced rx user at all, I only recently discovered it :)
I'm always happy when somebody else is looking over my changes.
The patch was a result of a my understanding of an off-the-lists dialog
between Mattias and me, where it is totally possible that I
misunderstood or misimplemented things.
What led me to eval-and-compile was that I want to "compose" Perl syntax
elements from those defined earlier - and I also want to write unit
tests for the rx form in cperl-mode-tests.el.
> [...]
>
>> +(defconst cperl-maybe-white-and-comment-rex
>> + (rx-to-string `(group (eval cperl--ws*-rx)))
>
> I'm thinking of the rx `eval' things everywhere. Wouldn't defining
> these rx expressions with `rx-define' be more straighforward, and then
> you'd have:
Yes, it would be. The downside is that I'd have to abandon the plan to
move CPerl mode to ELPA and make it available for Emacs 26.1 and up.
Perl coders might want to try the new CPerl mode without having to build
Emacs 28 - and I want their feedback.
I'm ready to upgrade that stuff to `rx-define' when the typical Linux
distributions ship with an Emacs version supporting it!
>> +(defconst cperl-maybe-white-and-comment-rex
>> + (rx-to-string `(group cperl--ws*-rx))
>
> (Similarly for basically all the rx `eval' bits.
>
> Now, rx expands the `eval' at compile time, I think, so it doesn't
> really make that much difference in practice, but it seems slightly
> clearer, perhaps?
Sure, I understand that.
By the way, the journey isn't over yet. What I plan to do next is to
add support for popular Perl extensions which bring new syntax (also, a
new Perl version might sooner or later bring the same keywords, probably
with "better" syntax). So I guess there will be a basic
compile-time-syntax, plus modifications at runtime when I know which
exact syntax applies to a buffer.
--
Cheers,
haj
next prev parent reply other threads:[~2021-03-04 18:19 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-03 14:43 bug#46889: cperl-mode: Fix indentation issues [PATCH] Harald Jörg
2021-03-04 17:31 ` Lars Ingebrigtsen
2021-03-04 18:07 ` Mattias Engdegård
2021-03-04 18:16 ` Lars Ingebrigtsen
2021-03-04 18:23 ` Mattias Engdegård
2021-03-04 18:34 ` Lars Ingebrigtsen
2021-03-05 10:30 ` bug#46889: Help version guesser bug (was: bug#46889: cperl-mode: Fix indentation issues [PATCH]) Stephen Berman
2021-03-05 13:06 ` bug#46889: Help version guesser bug Lars Ingebrigtsen
2021-03-04 18:19 ` Harald Jörg [this message]
2021-03-09 17:06 ` bug#46889: cperl-mode: Fix indentation issues [PATCH] Harald Jörg
2021-03-09 17:18 ` Harald Jörg
2021-03-10 14:42 ` Lars Ingebrigtsen
2021-05-17 15:28 ` Lars Ingebrigtsen
2021-05-17 21:31 ` Harald Jörg
2021-05-18 13:47 ` 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=87ft1au6gx.fsf@hajtower \
--to=haj@posteo.de \
--cc=46889@debbugs.gnu.org \
--cc=larsi@gnus.org \
--cc=mattiase@acm.org \
/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.