changeset 12569:51ea446bf1f8

regcomp: fix typo in comment * lib/regcomp.c (duplicate_node_closure): Sync from glibc. s/satisfy/satisfies/.
author Jim Meyering <meyering@redhat.com>
date Mon, 04 Jan 2010 10:47:58 +0100
parents c97a23e70cb7
children 3ed9d84fee81
files ChangeLog lib/regcomp.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-01-04  Jim Meyering  <meyering@redhat.com>
 
+	regcomp: fix typo in comment
+	* lib/regcomp.c (duplicate_node_closure): Sync from glibc.
+	s/satisfy/satisfies/.
+
 	regcomp: sync from glibc: remove dead store
 	* lib/regcomp.c (duplicate_node_closure): Remove useless
 	search_duplicated_node call and dead store.
--- a/lib/regcomp.c
+++ b/lib/regcomp.c
@@ -1546,7 +1546,7 @@
 	    }
 	  else
 	    {
-	      /* There is a duplicated node which satisfy the constraint,
+	      /* There is a duplicated node which satisfies the constraint,
 		 use it to avoid infinite loop.  */
 	      ok = re_node_set_insert (dfa->edests + clone_node, clone_dest);
 	      if (BE (! ok, 0))