add numbers as allowed chars

This commit is contained in:
Dmitriy Ryajov 2022-09-19 22:27:08 -06:00
parent 17c4ff92a4
commit 5f6acbd88d
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4

View File

@ -32,6 +32,7 @@ const
Allowed* = { Allowed* = {
'a'..'z', 'a'..'z',
'A'..'Z', 'A'..'Z',
'0'..'9',
DirSep, AltSep, DirSep, AltSep,
'_', '-'} '_', '-'}