Re: Erroneous uses of regex in the invokation of FIND-FILES

2019-09-20 Thread Maxim Cournoyer
Hi again, Alex Vong writes: > Hello guix, > > I find out that there are a lof of erroneous uses of regex in the > invokation of FIND-FILES. The correct usage should be: > > (find-files "." "\\.c$") > > Instead people write: > > (find-

Re: Erroneous uses of regex in the invokation of FIND-FILES

2019-09-20 Thread Maxim Cournoyer
Hello Alex, Alex Vong writes: > [Resending...] > > Hello guix, > > I find out that there are a lof of erroneous uses of regex in the > invokation of FIND-FILES. The correct usage should be: > > (find-files "." "\\.c$") > > Instead people writ

Re: Erroneous uses of regex in the invokation of FIND-FILES

2019-08-22 Thread Mark H Weaver
Hi Alex, Alex Vong writes: > I find out that there are a lof of erroneous uses of regex in the > invokation of FIND-FILES. The correct usage should be: > > (find-files "." "\\.c$") > > Instead people write: > > (find-files "." ".*

Erroneous uses of regex in the invokation of FIND-FILES

2019-08-22 Thread Alex Vong
[Resending...] Hello guix, I find out that there are a lof of erroneous uses of regex in the invokation of FIND-FILES. The correct usage should be: (find-files "." "\\.c$") Instead people write: (find-files "." ".*\\.c") which match unwanted files

Erroneous uses of regex in the invokation of FIND-FILES

2019-08-22 Thread Alex Vong
Hello guix, I find out that there are a lof of erroneous uses of regex in the invokation of FIND-FILES. The correct usage should be: (find-files "." "\\.c$") Instead people write: (find-files "." ".*\\.c") which match unwanted files. For examples,