From: Paul Eggert Date: Tue, 16 Oct 2012 23:01:05 +0000 (-0700) Subject: * lib/regexec.c (re_search_internal): Fix grammar in comment. X-Git-Tag: v0.1~391 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=0aa49ea72a8764e3065ebbfc55459232ca8fb021;p=gnulib.git * lib/regexec.c (re_search_internal): Fix grammar in comment. --- diff --git a/ChangeLog b/ChangeLog index fca0234b39..62b0cf6757 100644 --- 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 index 7d130a0a02..d8a3c4be1a 100644 --- a/lib/regexec.c +++ b/lib/regexec.c @@ -735,7 +735,7 @@ re_search_internal (const regex_t *preg, 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;