Underscore in logical pathname
Hi,
I have one question regarding logical pathnames. How can I specify a
file name / folder name which includes the underscore character? Here is
a simple example:
(setf (logical-pathname-translations "myapp")
`(("root;**;*.*" "c:\\Development\\myapp\\**\\")))
(translate-logical-pathname "myapp:root;simple-application.lisp")
works fine, but:
(translate-logical-pathname "myapp:root;simple_application.lisp")
does not work (can't parse the logical pathname).
Thank you,
Lukas