diff options
author | 2019-05-24 21:33:50 +0000 | |
---|---|---|
committer | 2019-05-24 21:33:50 +0000 | |
commit | e603c72f713dd59b67030a9b97ec661800da159e (patch) | |
tree | eea5e7d93e64508ee05a530a934dc10aa86ac5d0 /gnu/usr.bin/perl/numeric.c | |
parent | Configure pins. (diff) | |
download | wireguard-openbsd-e603c72f713dd59b67030a9b97ec661800da159e.tar.xz wireguard-openbsd-e603c72f713dd59b67030a9b97ec661800da159e.zip |
Update to perl 5.28.2
Minor bugfixes and documentation improvments. See perldelta for details.
https://metacpan.org/pod/release/SHAY/perl-5.28.2/pod/perldelta.pod
OK bluhm@
Diffstat (limited to 'gnu/usr.bin/perl/numeric.c')
-rw-r--r-- | gnu/usr.bin/perl/numeric.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/numeric.c b/gnu/usr.bin/perl/numeric.c index 8754a9f6498..7f30e93c900 100644 --- a/gnu/usr.bin/perl/numeric.c +++ b/gnu/usr.bin/perl/numeric.c @@ -565,9 +565,9 @@ Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) Helper for C<grok_number()>, accepts various ways of spelling "infinity" or "not a number", and returns one of the following flag combinations: - IS_NUMBER_INFINITE + IS_NUMBER_INFINITY IS_NUMBER_NAN - IS_NUMBER_INFINITE | IS_NUMBER_NEG + IS_NUMBER_INFINITY | IS_NUMBER_NEG IS_NUMBER_NAN | IS_NUMBER_NEG 0 |