diff options
author | Karl Williamson <khw@cpan.org> | 2017-08-28 17:21:09 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-11-08 20:52:52 -0700 |
commit | 892e646556f1997b0384dc508d3223c2c2a7be74 (patch) | |
tree | 0789fa4b3c67af8a23eef78b216d951a41530679 /intrpvar.h | |
parent | 755599dacf0896e06380d44bf5f7dd624678415a (diff) | |
download | perl-892e646556f1997b0384dc508d3223c2c2a7be74.tar.gz |
Change name of locale per-interpreter variable
The real purpose of this internal variable is to give the name of the
locale that is the underlying one for the C program. Various macros
already indicate that. This furthers the process.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h index 87f33d8bb4..d88628a094 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -613,9 +613,9 @@ PERLVARI(I, perl_destruct_level, signed char, 0) #ifdef USE_LOCALE_NUMERIC PERLVARI(I, numeric_standard, int, TRUE) - /* Assume simple numerics */ -PERLVARI(I, numeric_local, bool, TRUE) - /* Assume local numerics */ + /* Assume C locale numerics */ +PERLVARI(I, numeric_underlying, bool, TRUE) + /* Assume underlying locale numerics */ PERLVAR(I, numeric_name, char *) /* Name of current numeric locale */ PERLVAR(I, numeric_radix_sv, SV *) /* The radix separator if not '.' */ |