]> Savannah Git Hosting - gnulib.git/commitdiff
* lib/regexec.c (re_search_internal): Fix grammar in comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Oct 2012 23:01:05 +0000 (16:01 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Oct 2012 23:01:05 +0000 (16:01 -0700)
ChangeLog
lib/regexec.c

index fca0234b39dc65cfcdc533dc1a8f3bfa32084ee1..62b0cf67577fdd00904195a31863b0932eb00aa3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-10-16  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lib/regexec.c (re_search_internal): Fix grammar in comment.
+
 2012-10-15  Paul Eggert  <eggert@cs.ucla.edu>
 
        fchmodat, fchownat, fstatat: port to non-inlining compilers
index 7d130a0a0219a7a6e280d4632dd156e4b33161c2..d8a3c4be1ac2adc4e17a485d02a2463724ecb6e8 100644 (file)
@@ -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;