diff options
author | Bruno Haible <bruno@clisp.org> | 2008-09-27 20:44:30 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:15:52 +0200 |
commit | cb17d98e7a5d7a6abc487fb34b131cac9dac1965 (patch) | |
tree | 4999784f2bcc77e2d765a053ec9f0eec698940ba /gettext-runtime | |
parent | d671f729f5ab92f6fce29039004560000d3185a9 (diff) | |
download | external_gettext-cb17d98e7a5d7a6abc487fb34b131cac9dac1965.zip external_gettext-cb17d98e7a5d7a6abc487fb34b131cac9dac1965.tar.gz external_gettext-cb17d98e7a5d7a6abc487fb34b131cac9dac1965.tar.bz2 |
Update from gnulib.
Diffstat (limited to 'gettext-runtime')
-rw-r--r-- | gettext-runtime/intl/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-runtime/intl/xsize.h | 4 | ||||
-rw-r--r-- | gettext-runtime/libasprintf/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-runtime/libasprintf/xsize.h | 4 |
4 files changed, 12 insertions, 4 deletions
diff --git a/gettext-runtime/intl/ChangeLog b/gettext-runtime/intl/ChangeLog index e361d17..5a8e377 100644 --- a/gettext-runtime/intl/ChangeLog +++ b/gettext-runtime/intl/ChangeLog @@ -93,6 +93,10 @@ * 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. diff --git a/gettext-runtime/intl/xsize.h b/gettext-runtime/intl/xsize.h index b3023a7..0b0cef8 100644 --- a/gettext-runtime/intl/xsize.h +++ b/gettext-runtime/intl/xsize.h @@ -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) diff --git a/gettext-runtime/libasprintf/ChangeLog b/gettext-runtime/libasprintf/ChangeLog index 7ad3d46..f50235e 100644 --- a/gettext-runtime/libasprintf/ChangeLog +++ b/gettext-runtime/libasprintf/ChangeLog @@ -93,6 +93,10 @@ * 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. diff --git a/gettext-runtime/libasprintf/xsize.h b/gettext-runtime/libasprintf/xsize.h index b3023a7..0b0cef8 100644 --- a/gettext-runtime/libasprintf/xsize.h +++ b/gettext-runtime/libasprintf/xsize.h @@ -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) |