# HG changeset patch # User Paul Eggert # Date 1350428465 25200 # Node ID 42f6597efac3d0bad456904edb1b516c2ed9b9be # Parent 794ea55f5504d52e17120d8edf70320fa8502093 * lib/regexec.c (re_search_internal): Fix grammar in comment. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-10-16 Paul Eggert + + * lib/regexec.c (re_search_internal): Fix grammar in comment. + 2012-10-15 Paul Eggert fchmodat, fchownat, fstatat: port to non-inlining compilers diff --git a/lib/regexec.c b/lib/regexec.c --- a/lib/regexec.c +++ b/lib/regexec.c @@ -735,7 +735,7 @@ mctx.input.tip_context = (eflags & REG_NOTBOL) ? CONTEXT_BEGBUF : CONTEXT_NEWLINE | CONTEXT_BEGBUF; - /* Check incrementally whether of not the input string match. */ + /* Check incrementally whether the input string matches. */ incr = (last_start < start) ? -1 : 1; left_lim = (last_start < start) ? last_start : start; right_lim = (last_start < start) ? start : last_start;