diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-21 21:26:42 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-21 21:57:01 -0700 |
commit | 796c250af72d7264bf704fa01ce82a544b659a0d (patch) | |
tree | 1c2dfdfacd11f344be290e62ceefa63194442790 /intrpvar.h | |
parent | f00d33506e6858c5398ebd4748884c1529f24ef7 (diff) | |
download | perl-796c250af72d7264bf704fa01ce82a544b659a0d.tar.gz |
intrpvar.h: Need to initialize PL_utf8_foldable
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index a4beda6851..b45088fc48 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -784,7 +784,7 @@ PERLVARI(Iutf8_foldclosures, HV *, NULL) /* List of characters that participate in folds (except marks, etc in * multi-char folds) */ -PERLVAR(Iutf8_foldable, HV *) +PERLVARI(Iutf8_foldable, HV *, NULL) PERLVAR(Icustom_ops, HV *) /* custom op registrations */ |