|
From: Christophe R. <cs...@ca...> - 2013-02-04 15:19:06
|
CRLF0710 <crl...@gm...> writes: > Is that a good idea? No. Lisp syntax for pathnames isn't the same as filesystem syntax for pathnames -- if you want to use filesystem syntax, the native-pathname interface is what you want. If you just want to represent a pathname with a bracket in it, you can escape the wildness using backslashes: (wild-pathname-p #p"\\[") ; => nil Cheers, Christophe |