X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=HACKING;h=666d504e7336b61ef7d26f559e5b192c56fbd9de;hp=f7cb92e96948b552bb360971c380e3ccb38ff371;hb=d07658376f6b05c85ca0763fb06a610a9211fb77;hpb=422cbeb718cf2499cd07c9399755d41aea65b1f8 diff --git a/HACKING b/HACKING index f7cb92e9..666d504e 100644 --- a/HACKING +++ b/HACKING @@ -50,3 +50,11 @@ requirements. See design_www.txt and design_notes.txt in the Documentation/ directory for design decisions made during development. + +Perl notes +---------- + +* \w, \s, \d character classes all match Unicode characters; + so write out class ranges (e.g "[0-9]") if you only intend to + match ASCII. Do not use the "/a" (ASCII) modifier, that requires + Perl 5.14 and we're only depending on 5.10.1 at the moment.