]> ruderich.org/simon Gitweb - blhc/blhc.git/commit
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)
commitc00a6af3163584d9bbe5f0742f9ed001c202e564
tree95d01ecb792b548edc4bbbe2ff8650ae7d87a06f
parentd791242047730d55a858f668702ea27fe3c77f77
Add missing //o to regex

//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.
bin/blhc