]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update from gnulib.
authorBruno Haible <bruno@clisp.org>
Sat, 27 Sep 2008 20:44:30 +0000 (20:44 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:15:52 +0000 (12:15 +0200)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/xsize.h
gettext-runtime/libasprintf/ChangeLog
gettext-runtime/libasprintf/xsize.h

index e361d17e31b840cae19e0ee390dffa59bb34630b..5a8e3772def2d79b85ff74ca79428c0c47ce5af2 100644 (file)
        * vasnprintf.c (VASNPRINTF): When performing zero-padding, use
        spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
 
+2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
+
+       * lib/xsize.h: Fix typo in comment: s/tupe/type/.
+
 2008-02-07  Bruno Haible  <bruno@clisp.org>
 
        * vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
index b3023a7d477488d92904b65c80843ea4d50faa7b..0b0cef8e4f5aef436d7baff3cb12670ae92b5e51 100644 (file)
@@ -1,6 +1,6 @@
 /* xsize.h -- Checked size_t computations.
 
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify it
    under the terms of the GNU Library General Public License as published
@@ -95,7 +95,7 @@ xmax (size_t size1, size_t size2)
 /* Multiplication of a count with an element size, with overflow check.
    The count must be >= 0 and the element size must be > 0.
    This is a macro, not an inline function, so that it works correctly even
-   when N is of a wider tupe and N > SIZE_MAX.  */
+   when N is of a wider type and N > SIZE_MAX.  */
 #define xtimes(N, ELSIZE) \
   ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX)
 
index 7ad3d463897294ae0db6f099e8a6bef756f9c44d..f50235efac6a031a722bc62e196eeeecd5ad249b 100644 (file)
        * vasnprintf.c (VASNPRINTF): When performing zero-padding, use
        spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
 
+2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
+
+       * xsize.h: Fix typo in comment: s/tupe/type/.
+
 2008-02-07  Bruno Haible  <bruno@clisp.org>
 
        * vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
index b3023a7d477488d92904b65c80843ea4d50faa7b..0b0cef8e4f5aef436d7baff3cb12670ae92b5e51 100644 (file)
@@ -1,6 +1,6 @@
 /* xsize.h -- Checked size_t computations.
 
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify it
    under the terms of the GNU Library General Public License as published
@@ -95,7 +95,7 @@ xmax (size_t size1, size_t size2)
 /* Multiplication of a count with an element size, with overflow check.
    The count must be >= 0 and the element size must be > 0.
    This is a macro, not an inline function, so that it works correctly even
-   when N is of a wider tupe and N > SIZE_MAX.  */
+   when N is of a wider type and N > SIZE_MAX.  */
 #define xtimes(N, ELSIZE) \
   ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX)