diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-08-12 11:50:54 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-11-19 17:13:00 -0700 |
commit | 9e84774b2a68a51af5e246f365059d61ebe86fb0 (patch) | |
tree | 2c2b75922b0cbfd4ba87e2bd96841ac9793fe176 /regcomp.sym | |
parent | f39a4dc253ff51cabd56ad1bfcb65547ce7be501 (diff) | |
download | perl-9e84774b2a68a51af5e246f365059d61ebe86fb0.tar.gz |
regcomp.sym: Change regkind for NPOSIX regnodes
It turns out that it is more convenient for the complement of a node to
have a regkind that is also the complement of a node. This creates
slight inconveniences that are included in this patch, but will help
further patches.
Diffstat (limited to 'regcomp.sym')
-rw-r--r-- | regcomp.sym | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regcomp.sym b/regcomp.sym index 3b4db9c9d7..eb8ba46238 100644 --- a/regcomp.sym +++ b/regcomp.sym @@ -89,10 +89,10 @@ POSIXD POSIXD, none 0 S ; currently unused except as a placeholder POSIXL POSIXD, none 0 S ; currently unused except as a placeholder POSIXU POSIXD, none 0 S ; currently unused except as a placeholder POSIXA POSIXD, none 0 S ; Some [[:class:]] under /a; the FLAGS field gives which one -NPOSIXD POSIXD, none 0 S ; currently unused except as a placeholder -NPOSIXL POSIXD, none 0 S ; currently unused except as a placeholder -NPOSIXU POSIXD, none 0 S ; currently unused except as a placeholder -NPOSIXA POSIXD, none 0 S ; complement of POSIXA, [[:^class:]] +NPOSIXD NPOSIXD, none 0 S ; currently unused except as a placeholder +NPOSIXL NPOSIXD, none 0 S ; currently unused except as a placeholder +NPOSIXU NPOSIXD, none 0 S ; currently unused except as a placeholder +NPOSIXA NPOSIXD, none 0 S ; complement of POSIXA, [[:^class:]] # End of order is important (within groups) CLUMP CLUMP, no 0 V ; Match any extended grapheme cluster sequence |