From 67bf4349ca796e966dd294c5b2886131d5293188 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Tue, 1 Dec 2015 14:17:50 -0500 Subject: [PATCH] Revert "Assume that files that start with . are not modules" This reverts commit fc342924862be8b0f5e8d9ae1033ec622761bd04. --- racket/collects/compiler/module-suffix.rkt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/racket/collects/compiler/module-suffix.rkt b/racket/collects/compiler/module-suffix.rkt index 8823915d54..f600ef7967 100644 --- a/racket/collects/compiler/module-suffix.rkt +++ b/racket/collects/compiler/module-suffix.rkt @@ -52,8 +52,7 @@ (define suffixes (get-module-suffixes #:mode key #:group group #:namespace namespace)) (byte-pregexp - (bytes-append #"^([^.].*)\\.(?i:" + (bytes-append #"^(.*)\\.(?i:" (apply bytes-append (add-between suffixes #"|")) #")$"))) -