bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#35202: 27.0.50; Info-quoted false positives and false negatives


From: Noam Postavsky
Subject: bug#35202: 27.0.50; Info-quoted false positives and false negatives
Date: Tue, 09 Apr 2019 07:35:27 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1.91 (gnu/linux)

Mauro Aranda <maurooaranda@gmail.com> writes:

> -  '(("‘\\([^’]*\\)’" (1 'Info-quoted))))
> +  '(("‘\\([‘’]?\\|[^‘’]*\\)’" (1 'Info-quoted))))

Just a minor nitcpick, both the alternives match the empty string, I
would rather write it to avoid overlap:

        "‘\\([‘’]\\|[^‘’]*\\)’"

or

        "‘\\([‘’]?\\|[^‘’]+\\)’"


reply via email to

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