aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-05-30 15:50:05 -0400
committerArnold D. Robbins <arnold@skeeve.com>2016-05-30 15:50:05 -0400
commitd69572fbae2d25a2c51d846733a49d45e5b04269 (patch)
tree03be0bb6e1e423fe2f82177fc20e4b3bb1b73ba2 /main.c
parent0b2f0d477ce612eecc2a6654bff62ccbb1887f06 (diff)
downloadegawk-d69572fbae2d25a2c51d846733a49d45e5b04269.tar.gz
egawk-d69572fbae2d25a2c51d846733a49d45e5b04269.tar.bz2
egawk-d69572fbae2d25a2c51d846733a49d45e5b04269.zip
Always force number on -v arguments, even if LC_NUMERIC not defined.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.c b/main.c
index fa4bceed..cb434f90 100644
--- a/main.c
+++ b/main.c
@@ -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 */