GNU bug report logs -
#24914
24.5; isearch-regexp: wrong error message
Previous Next
Reported by: Drew Adams <drew.adams <at> oracle.com>
Date: Wed, 9 Nov 2016 22:31:01 UTC
Severity: minor
Tags: confirmed, fixed, patch
Found in versions 24.5, 25.2
Fixed in version 27.1
Done: Noam Postavsky <npostavs <at> users.sourceforge.net>
Bug is archived. No further changes may be made.
Full log
Message #24 received at 24914 <at> debbugs.gnu.org (full text, mbox):
Drew Adams <drew.adams <at> oracle.com> writes:
>> It's not a limit in Lisp, but in regex.c.
>
> We can't use something larger there?
Hmm, right, actually I see in regex.h:
/* If sizeof(int) == 2, then ((1 << 15) - 1) overflows. */
#define RE_DUP_MAX (0x7fff)
Does Emacs even support 16 bit platforms?
>> >> As to the error message itself, there isn't really a way
>> >> to distinguish between incomplete and invalid input,
>> >
>> > We do that in some places in the code.
>>
>> What places are those?
>
> In the Lisp code, at least, there are a few places where
> we provide an error that is specific to an invalid regexp.
> Search for handling of standard error `invalid-regexp',
> for instance.
As far as I can tell, none of those places (apart from isearch.el, the
subject of this bug) try to flag "incomplete" regexps, only invalid or
valid.
>> > Some code parses the regexp, and that code must know (or be able to
>> > know) both that the regexp is not incomplete
>>
>> What does it mean for a regexp to be incomplete or not? As far as I can
>> tell, the only distinction is that the user means to type more; but the
>> code doesn't know what will happen in the future...
>
> Presumably that term is used only for cases where we can
> be sure that in order for the regexp to be valid there
> would need to be further input. `foo' is not incomplete,
> whether or not the user "means to type more". `[^' is
> incomplete, because it can be made valid only by typing
> more.
Is `\\{100,20\\}' incomplete? Because it could be made valid by the user
adding a 0 after the 20 to become '\\{100,200\\}'.
Actually, I'm wondering what's the point of isearch showing "incomplete"
instead of the actual regexp invalid error. I.e., why not instead of
\ [incomplete]
\{ [incomplete]
\{4 [incomplete]
\{4000 [incomplete]
\{4000\ [incomplete]
\{4000\}
show this:
\ [Trailing backslash]
\{ [Unmatched \{]
\{4 [Unmatched \{]
\{4000 [Unmatched \{]
\{4000\ [Trailing backslash]
\{4000\}
This bug report was last modified 7 years and 119 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.