# New Ticket Created by karl williamson # Please include the string: [perl #80318] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=80318 > Yves informed me that I had been misled by the comments in regcomp.sym into thinking all new nodes had to come at the end. So this patch series includes moving them around to sensible groups. It also fixes an EBCDIC-only bug that I overlooked in an earlier patch And adds support for locales and \d, \D correctly. There were several places wrong, including the node definitions in regcomp.sym, and the fact that they weren't being generated in regcomp.c, and only some places in regexec.c that should have them actually did. These came out in the .t testing, so there is some locale tests that work. I also noticed that SPACE was hard-coded into locale handling of \s and \S. This shouldn't be. It appears to have been a sloppy cut-paste job. These are also available at https://github.com/khwilliamson/perl.git branch regexThread Previous