Opened 13 years ago

Closed 13 years ago

Last modified 12 years ago

#608 closed defect (fixed)

normalize-pathname x:/ deletes drive letter (on Windows)

Reported by: Jim Ursetto Owned by: felix winkelmann
Priority: major Milestone: 4.9.0
Component: core libraries Version: 4.7.x
Keywords: Cc:
Estimated difficulty:

Description

Drive letter is deleted if directory is missing or
or /.

#;2> (normalize-pathname "x:" 'windows)
"\\."
#;3> (normalize-pathname "x:/" 'windows)
"\\."
#;4> (normalize-pathname "c:/" 'windows)
"\\."
#;5> (normalize-pathname "c:\\" 'windows)
"\\."

;; this one is ok

#;6> (normalize-pathname "c:/chicken4" 'windows)
"c:\\chicken4"

Change History (2)

comment:1 Changed 13 years ago by felix winkelmann

Resolution: fixed
Status: newclosed

comment:2 Changed 12 years ago by felix winkelmann

Milestone: 4.8.04.9.0

Milestone 4.8.0 deleted

Note: See TracTickets for help on using tickets.