]> Sergey Matveev's repositories - public-inbox.git/blobdiff - HACKING
HACKING: document Perl character class gotcha
[public-inbox.git] / HACKING
diff --git a/HACKING b/HACKING
index f7cb92e96948b552bb360971c380e3ccb38ff371..666d504e7336b61ef7d26f559e5b192c56fbd9de 100644 (file)
--- 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.