summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-12-30 21:13:35 -0700
committerKarl Williamson <khw@cpan.org>2018-12-30 21:25:23 -0700
commitde8dfdba207399cf0e63e28bc8cce54917e1dc15 (patch)
treed3b3b3b40c828328da3befc1ca67b624b0647386 /perlvars.h
parentbb2c6dbdede60b5c7b587bcc59686351178673fe (diff)
downloadperl-de8dfdba207399cf0e63e28bc8cce54917e1dc15.tar.gz
perlvars.h: A variable was being initialized unnecessarily
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perlvars.h b/perlvars.h
index 2a4696bbcb..e8064eb320 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -285,7 +285,7 @@ PERLVAR(G, SCX_invlist, SV *)
PERLVAR(G, UpperLatin1, SV *) /* Code points 128 - 255 */
/* List of characters that participate in any fold defined by Unicode */
-PERLVARI(G, in_some_fold, SV *, NULL)
+PERLVAR(G, in_some_fold, SV *)
PERLVAR(G, utf8_idcont, SV *)
PERLVAR(G, utf8_idstart, SV *)