mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-19 16:30:37 -07:00
Common case translation did not work for directory components
This commit is contained in:
parent
e6502efe62
commit
daac2cb958
1 changed files with 1 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ translate_directory_case(cl_object list, cl_object scase)
|
|||
} else {
|
||||
cl_object l;
|
||||
list = cl_copy_list(list);
|
||||
for (l = cl_copy_list(list); !endp(l); l = CDR(l)) {
|
||||
for (l = list; !endp(l); l = CDR(l)) {
|
||||
/* It is safe to pass anything to translate_pathname_case,
|
||||
* because it will only transform strings, leaving other
|
||||
* object (such as symbols) unchanged.*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue