]> Savannah Git Hosting - gnulib.git/commitdiff
vasnprintf: fix ASCII_ONLY typo
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 8 Dec 2012 03:31:34 +0000 (19:31 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 8 Dec 2012 03:31:34 +0000 (19:31 -0800)
* lib/unistdio/u8-vasnprintf.c (FCHAR_T_ONLY_ASCII):
* lib/unistdio/u16-vasnprintf.c (FCHAR_T_ONLY_ASCII):
* lib/unistdio/u32-vasnprintf.c (FCHAR_T_ONLY_ASCII):
New macro, replacing ASCII_ONLY.  This fixes a typo.  See thread at
<http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00021.html>.

ChangeLog
lib/unistdio/u16-vasnprintf.c
lib/unistdio/u32-vasnprintf.c
lib/unistdio/u8-vasnprintf.c

index fb6f84e16cde92d103aa379e58bacf35bf660342..b4b242e33ce03d1a8b8928ea5e39a39f2e72952f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-12-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       vasnprintf: fix ASCII_ONLY typo
+       * lib/unistdio/u8-vasnprintf.c (FCHAR_T_ONLY_ASCII):
+       * lib/unistdio/u16-vasnprintf.c (FCHAR_T_ONLY_ASCII):
+       * lib/unistdio/u32-vasnprintf.c (FCHAR_T_ONLY_ASCII):
+       New macro, replacing ASCII_ONLY.  This fixes a typo.  See thread at
+       <http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00021.html>.
+
 2012-12-05  Paul Eggert  <eggert@cs.ucla.edu>
 
        list, oset, xlist, xoset: fix extern inline issue with C99
index 1b1e3053f8af7bb36debe51f9338fcacda444ecc..c5b25663031f2d85c946aceaf9a9a72acff2c747 100644 (file)
@@ -36,7 +36,7 @@
 #define FCHAR_T char
 #define DIRECTIVE char_directive
 #define DIRECTIVES char_directives
-#define ASCII_ONLY 1
+#define FCHAR_T_ONLY_ASCII 1
 #define PRINTF_PARSE ulc_printf_parse
 #define DCHAR_T uint16_t
 #define DCHAR_T_IS_UINT16_T 1
index 9d45c717b9536fa21d84fd731b26b6cfd6cdd62f..f19c8930fbd52c372f2955eb244009d7ea47f5b7 100644 (file)
@@ -36,7 +36,7 @@
 #define FCHAR_T char
 #define DIRECTIVE char_directive
 #define DIRECTIVES char_directives
-#define ASCII_ONLY 1
+#define FCHAR_T_ONLY_ASCII 1
 #define PRINTF_PARSE ulc_printf_parse
 #define DCHAR_T uint32_t
 #define DCHAR_T_IS_UINT32_T 1
index f2437eb841a25374730b5671568a736d0affa8a6..2feea1c47d3febdb19275a75b520dd36f08ca0cf 100644 (file)
@@ -36,7 +36,7 @@
 #define FCHAR_T char
 #define DIRECTIVE char_directive
 #define DIRECTIVES char_directives
-#define ASCII_ONLY 1
+#define FCHAR_T_ONLY_ASCII 1
 #define PRINTF_PARSE ulc_printf_parse
 #define DCHAR_T uint8_t
 #define DCHAR_T_IS_UINT8_T 1