734417
diff -up a/x2p/find2perl.PL b/x2p/find2perl.PL
734417
--- a/x2p/find2perl.PL	2010-12-30 03:07:17.000000000 +0100
734417
+++ b/x2p/find2perl.PL	2012-05-29 10:18:11.697683643 +0200
734417
@@ -681,7 +681,8 @@ sub tab () {
734417
 sub fileglob_to_re ($) {
734417
     my $x = shift;
734417
     $x =~ s#([./^\$()+])#\\$1#g;
734417
-    $x =~ s#([?*])#.$1#g;
734417
+    $x =~ s#\*#.*#g;
734417
+    $x =~ s#\?#.#g;
734417
     "^$x\\z";
734417
 }
734417