Attila Lendvai schreef op di 03-05-2022 om 13:42 [+0200]: > +                              (string-match ".*v([0-9]+)$" raw-subdir)) Why a $ at the end but no "^" at the beginning? What's the point of the leading ".*"? Could the regexp be constructed in advance, or only once (maybe 'delay/force' and a global variable) -- turning a regexp into a NFA into a DFA can be expensive. Greetings, Maxime.