]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Add missing //o to regex
authorSimon Ruderich <simon@ruderich.org>
Sun, 20 May 2018 10:47:00 +0000 (12:47 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 20 May 2018 11:01:20 +0000 (13:01 +0200)
//o is a performance optimization which tells Perl to never recompile
the regex (per default it's recompiled if any used variable changes).
//o might not be necessary in recent Perl versions but in the past this
check had a measurable performance impact.

So add it for consistency and because we actually never change the
variable.


No differences found