diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | main.c | 4 |
2 files changed, 12 insertions, 4 deletions
@@ -1,5 +1,11 @@ +2016-05-30 Arnold D. Robbins <arnold@skeeve.com> + + * main.c (arg_assign): Fully bracket ifdefs around call + to force_number. Thanks to Andrew Schorr for pointing out + that force_number was called only if LC_NUMERIC was defined. + 2016-05-26 Andrew J. Schorr <aschorr@telemetry-investments.com> - + * awk.h (get_actual_argument): Remove unused "optional" argument. (get_scalar_argument, get_array_argument): Change macro definition to remove 3rd "optional" argument. @@ -242,7 +248,7 @@ Regex: treat [x] as x if x is a unibyte encoding error. This change removes an ifdef GAWK. - * lib/regcomp.c (parse_byte) [ !_LIBC && RE_ENABLE_I18N]: New function. + * regcomp.c (parse_byte) [ !_LIBC && RE_ENABLE_I18N]: New function. (build_range_exp) [ !_LIBC && RE_ENABLE_I18N]: Use it. From Paul Eggert <eggert@cs.ucla.edu>. @@ -377,7 +383,7 @@ 2015-09-11 Daniel Richard G. <skunk@iSKUNK.ORG> - * regcomp.h: Include strings.h, wrapped in ifdef. Revise + * regcomp.c: Include strings.h, wrapped in ifdef. Revise defines for BTOWC. * regex_internal.h: Remove ZOS_USS bracketing ifdefs. @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1986, 1988, 1989, 1991-2015 the Free Software Foundation, Inc. + * Copyright (C) 1986, 1988, 1989, 1991-2016 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -1134,7 +1134,9 @@ arg_assign(char *arg, bool initing) */ if (do_posix) setlocale(LC_NUMERIC, "C"); +#endif /* LC_NUMERIC */ (void) force_number(it); +#ifdef LC_NUMERIC if (do_posix) setlocale(LC_NUMERIC, locale); #endif /* LC_NUMERIC */ |