* lib/regexec.c (re_search_internal): Simplify update of
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 31 Aug 2005 19:55:29 +0000 (19:55 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 31 Aug 2005 19:55:29 +0000 (19:55 +0000)
commita3bb83a2149c638ec64f53c99951dc5445e19d10
tree9a847642119451154e242bc5ad60d2c92a4504e1
parent0b1b22468324375e074bc9c234b0ca4e3d58d68c
* lib/regexec.c (re_search_internal): Simplify update of
rm_so and rm_eo by replacing "if (A == B) A += C - B;"
with the equivalent of "if (A == B) A = C;".  This will
make the code more reliable once we port to 64-bit hosts.
* config/srclist.txt: Add glibc bug 1279.
config/ChangeLog
config/srclist.txt
lib/ChangeLog
lib/regexec.c