SHA256
6
0
forked from pool/grep

Accepting request 437647 from home:AndreasStieger:branches:Base:System

grep 2.26

OBS-URL: https://build.opensuse.org/request/show/437647
OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=71
This commit is contained in:
2016-10-28 13:08:56 +00:00
committed by Git OBS Bridge
parent ac3ff8c41b
commit 74a16347ac
6 changed files with 47 additions and 24 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Fri Oct 28 13:01:39 UTC 2016 - astieger@suse.com
- grep 2.26:
* no longer omit output merely because it follows an output line
suppressed due to encoding errors
* In the Shift_JIS locale, no longer mistakenly match in the
middle of a multibyte character
* grep can be much faster now when standard output is /dev/null.
* grep -F is now typically much faster when many patterns are
given, as it now uses the Aho-Corasick algorithm instead of
the Commentz-Walter algorithm in that case.
* grep -iF is typically much faster in a multibyte locale, if
the pattern and its case counterparts contain only single byte
characters.
* grep with complicated expressions (e.g., back-references) and
without -i now uses the regex fastmap for better performance.
* In multibyte locales, grep now handles leading "." in patterns
more efficiently.
* grep now prints a "FILENAME:LINENO: " prefix when diagnosing
an invalid regular expression that was read from an
'-f'-specified file.
-------------------------------------------------------------------
Fri Apr 22 13:49:18 UTC 2016 - astieger@suse.com