diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-05-27 11:01:16 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-03 14:05:44 -0600 |
commit | a25abddce2beacd697f218d5625b22c4e344ee10 (patch) | |
tree | bf392ce75643d8fd7e50768d36757dcd55df74ee /intrpvar.h | |
parent | e846f1dc86643f46748f814adf2948a5787a2ccf (diff) | |
download | perl-a25abddce2beacd697f218d5625b22c4e344ee10.tar.gz |
Change inversion lists to SVs
The inversion list is an opaque object, currently implemented as an SV.
Even if it ends up being an HV in the future, Nicholas is of the opinion
that it should be presented to the world as an SV*.
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 cb8a86171b..b2d4d5c222 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -729,7 +729,7 @@ PERLVARI(Iutf8_foldclosures, HV *, NULL) /* List of characters that participate in folds (except marks, etc in * multi-char folds) */ -PERLVARI(Iutf8_foldable, HV *, NULL) +PERLVARI(Iutf8_foldable, SV *, NULL) PERLVAR(Icustom_ops, HV *) /* custom op registrations */ |