emacs-devel
[Top][All Lists]
Advanced

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

Re: Lack of tooling slowing down contributions


From: Andy Moreton
Subject: Re: Lack of tooling slowing down contributions
Date: Wed, 19 Jun 2019 13:50:00 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (windows-nt)

On Wed 19 Jun 2019, Juri Linkov wrote:
> BTW, I tried to replace the regexp above with ‘rx’ that is easier to read:
>
>   (rx (group (>= 5 (not (any " ."))))
>       (group (regexp (sentence-end))))
>
> but it fails.  Not sure if this will be fixed in bug#36237.

The regexp subform takes a string argument, so you need:

   `(rx (group (>= 5 (not (any " ."))))
        (group (regexp ,(sentence-end))))

HTH,

    AndyM




reply via email to

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