0
};
-UV HorizSpace_invlist[] = {
- 18, /* Number of elements */
- 0, /* Current iteration position */
- 1064334010, /* Version and data structure type */
- 1, /* 0 if this is the first element of the list proper;
- 1 if the next element is the first */
- 9,
- 10,
- 32,
- 33,
- 160,
- 161,
- 5760,
- 5761,
- 6158,
- 6159,
- 8192,
- 8203,
- 8239,
- 8240,
- 8287,
- 8288,
- 12288,
- 12289
-};
-
UV VertSpace_invlist[] = {
6, /* Number of elements */
0, /* Current iteration position */
PL_L1PosixAlnum = _new_invlist_C_array(L1PosixAlnum_invlist);
PL_PosixAlnum = _new_invlist_C_array(PosixAlnum_invlist);
- PL_HorizSpace = _new_invlist_C_array(HorizSpace_invlist);
-
PL_L1PosixLower = _new_invlist_C_array(L1PosixLower_invlist);
PL_PosixLower = _new_invlist_C_array(PosixLower_invlist);
/* For these, we use the nonbitmap, as /d doesn't make a
* difference in what these match. There would be problems
* if these characters had folds other than themselves, as
- * nonbitmap is subject to folding */
- _invlist_union(nonbitmap, PL_HorizSpace, &nonbitmap);
+ * nonbitmap is subject to folding. It turns out that \h
+ * is just a synonym for XPosixBlank */
+ _invlist_union(nonbitmap, PL_XPosixBlank, &nonbitmap);
break;
case ANYOF_NHORIZWS:
_invlist_union_complement_2nd(nonbitmap,
- PL_HorizSpace, &nonbitmap);
+ PL_XPosixBlank, &nonbitmap);
break;
case ANYOF_LOWER:
case ANYOF_NLOWER:
PL_L1PosixGraph = sv_dup_inc(proto_perl->IL1PosixGraph, param);
PL_PosixGraph = sv_dup_inc(proto_perl->IPosixGraph, param);
- PL_HorizSpace = sv_dup_inc(proto_perl->IHorizSpace, param);
-
PL_L1PosixLower = sv_dup_inc(proto_perl->IL1PosixLower, param);
PL_PosixLower = sv_dup_inc(proto_perl->IPosixLower, param);