Mathieu Lirzin <m...@gnu.org> writes:

> Hi,
>
> Ricardo Wurmus <rek...@elephly.net> writes:
>
>> PS: for future reference, this
>>
>> (lambda (file)
>>  (if (or (string=? file ".")
>>          (string=? file ".."))
>>  #f
>>  #t))
>>
>> could more concisely be written as
>>
>> (cute (not (or (string=? <> ".")
>>                (string=? <> ".."))))
>
> I think you mean something like this instead:
>
> (lambda (file)
>   (not (or (string=? file ".")
>            (string=? file ".."))))
>
> Did I miss something?

No, *I* did :) I mixed up two things and didn’t check before sending.
Thanks for the correction.

~~ Ricardo


Reply via email to