Rearrange comment to match pattern
authorJacob Bachmeyer <jcb@gnu.org>
Sat, 5 Nov 2022 20:48:12 +0000 (15:48 -0500)
committerJacob Bachmeyer <jcb@gnu.org>
Sat, 5 Nov 2022 20:48:12 +0000 (15:48 -0500)
gatekeeper.pl

index 48778586e1616ebac651ac9e6bcb704ef9d70a27..98f2202e79daabedd7b99a1487d892004119563b 100755 (executable)
@@ -477,7 +477,7 @@ require File::Spec::Unix;   # ensure that File::Spec::Unix is loaded
 
 # regex matching an acceptable filename in "this" directory
 #  must begin with an alphanumeric character
-#  and contain only alphanumeric, underscore, plus sign, hyphen, dot, and tilde
+#  and contain only hyphen, dot, alphanumeric, underscore, plus sign, and tilde
 #  note that an acceptable filename may not begin with dot, so ".." is out
 my $RE_filename_here = qr/[[:alnum:]][-.[:alnum:]_+~]*/;
 # regex matching an acceptable relative filename in POSIX syntax