]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix comment.
authorBruno Haible <bruno@clisp.org>
Sat, 27 Oct 2007 22:30:12 +0000 (22:30 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:15:24 +0000 (12:15 +0200)
gettext-tools/src/filter-sr-latin.c

index 06b4966a10b3807c865d905bb41ea181a9181f85..bb7e99c6c60691834766d6a9f2a1717855a12c29 100644 (file)
@@ -1,5 +1,5 @@
 /* Recode Serbian text from Cyrillic to Latin script.
-   Copyright (C) 2006 Free Software Foundation, Inc.
+   Copyright (C) 2006-2007 Free Software Foundation, Inc.
    Written by Danilo Ĺ egan <danilo@gnome.org>, 2006,
    and Bruno Haible <bruno@clisp.org>, 2006.
 
@@ -156,8 +156,8 @@ serbian_to_latin (const char *input, size_t input_len,
      beginning of a character; the second and further bytes of a character are
      all in the range \x80..\xBF.  */
 
-  /* Since sequences of 2 bytes are sequences of at most 3 bytes, the size
-     of the output will be at most 1.5 * input_len.  */
+  /* Since sequences of 2 bytes are mapped to sequences of at most 3 bytes,
+     the size of the output will be at most 1.5 * input_len.  */
   size_t allocated = input_len + (input_len >> 1);
   char *output = XNMALLOC (allocated, char);