]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix a stupid typo bug.
authorBruno Haible <bruno@clisp.org>
Mon, 12 Nov 2001 12:30:36 +0000 (12:30 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 21 Jun 2009 20:57:25 +0000 (22:57 +0200)
src/ChangeLog
src/msgl-cat.c

index ed924bb56050e71b38a60c0d7b06f50ea83705d6..58e9e8e034c58323cd84e190876ccac73c91fe67 100644 (file)
@@ -1,3 +1,8 @@
+2001-11-11  Bruno Haible  <haible@clisp.cons.org>
+
+       * msgl-cat.c (catenate_msgdomain_list): Fix a typo in 2001-11-01 patch.
+       Reported by Karl Eichwalder.
+
 2001-11-11  Bruno Haible  <haible@clisp.cons.org>
 
        * msginit.c (verbose): Remove variable.
index d90f5689dffbef7a5d75e6ede248a0f33d861245..f81baf00031b05573a1dc9a7b8e324a0a2330d04 100644 (file)
@@ -670,7 +670,7 @@ To select a different output encoding, use the --to-code option.\n\
 
                        message_comment_append (tmp, tmp->alternative[i].id);
                        for (l = 0; l < slp->nitems; l++)
-                         message_comment_append (tmp, slp->item[i]);
+                         message_comment_append (tmp, slp->item[l]);
                      }
                  }
 
@@ -698,7 +698,7 @@ To select a different output encoding, use the --to-code option.\n\
                        message_comment_dot_append (tmp,
                                                    tmp->alternative[i].id);
                        for (l = 0; l < slp->nitems; l++)
-                         message_comment_dot_append (tmp, slp->item[i]);
+                         message_comment_dot_append (tmp, slp->item[l]);
                      }
                  }
            }