X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=HACKING;h=666d504e7336b61ef7d26f559e5b192c56fbd9de;hb=1bbfab375438f149dcff9047dd0c5ed3a08eed53;hp=f7cb92e96948b552bb360971c380e3ccb38ff371;hpb=b1759e873fcd861e76be4b702119e70af267c9f4;p=public-inbox.git 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.