-
- Downloads
There was an error fetching the commit references. Please try again later.
Fix a bug in regex search where a regex like xa* would return multiple search...
Fix a bug in regex search where a regex like xa* would return multiple search results against a document like xaaaa (xa, xaa, etc.). Now that search results are properly sorted, this causes strange behavior. For example, only part of a match might be selected. Now, we ignore results that are a subset of a previous result. This works because the search progressively shortens and re-searches the document (e.g., xaaa, xaa, xa, x). Issue 5937
Please register or sign in to comment