Opened 20 months ago

Closed 20 months ago

Last modified 16 months ago

#5234 closed enhancement (fixed)

grep-3.10

Reported by: Douglas R. Reno Owned by: Xi Ruoyao
Priority: normal Milestone: 12.0
Component: Book Version: git
Severity: normal Keywords:
Cc:

Description

New minor version

Change History (4)

comment:1 by Xi Ruoyao, 20 months ago

GNU grep NEWS -*- outline -*-

  • Noteworthy changes in release 3.10 (2023-03-22) [stable]

Bug fixes

With -P, \d now matches only ASCII digits, regardless of PCRE options/modes. The changes in grep-3.9 to make \b and \w work properly had the undesirable side effect of making \d also match e.g., the Arabic digits: ٠١٢٣٤٥٦٧٨٩. With grep-3.9, -P '\d+' would match that ten-digit (20-byte) string. Now, to match such a digit, you would use \p{Nd}. Similarly, \D is now mapped to [^0-9]. [bug introduced in grep 3.9]

comment:2 by Xi Ruoyao, 20 months ago

Owner: changed from lfs-book to Xi Ruoyao
Status: newassigned

comment:3 by Xi Ruoyao, 20 months ago

Resolution: fixed
Status: assignedclosed

comment:4 by Bruce Dubbs, 16 months ago

Milestone: 11.412.0

Milestone renamed

Note: See TracTickets for help on using tickets.