branch: scratch/editorconfig-cc
commit 49b0cd1a18e95490bb3efd16bd2d05f5d13e5030
Author: 10sr <8.slas...@gmail.com>
Commit: Stefan Monnier <monn...@iro.umontreal.ca>

    Fix that "?" does not match "/"
---
 editorconfig-fnmatch.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/editorconfig-fnmatch.el b/editorconfig-fnmatch.el
index 68727e5e24..da8df0a042 100644
--- a/editorconfig-fnmatch.el
+++ b/editorconfig-fnmatch.el
@@ -167,7 +167,7 @@ translation is found for PATTERN."
              (setq result `(,@result "[^/]*"))))
 
           (??
-           (setq result `(,@result ".")))
+           (setq result `(,@result "[^/]")))
 
           (?\[
            (if in-brackets

Reply via email to