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-
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
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 "." ".*
[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
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,