chicken-janitors
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-janitors] #608: normalize-pathname x:/ deletes drive letter (on


From: Chicken Trac
Subject: [Chicken-janitors] #608: normalize-pathname x:/ deletes drive letter (on Windows)
Date: Wed, 15 Jun 2011 06:31:41 -0000

#608: normalize-pathname x:/ deletes drive letter (on Windows)
----------------------------+-----------------------------------------------
 Reporter:  zbigniew        |       Owner:  felix
     Type:  defect          |      Status:  new  
 Priority:  major           |   Milestone:  4.8.0
Component:  core libraries  |     Version:  4.7.x
 Keywords:                  |  
----------------------------+-----------------------------------------------
 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"
 }}}

-- 
Ticket URL: <http://bugs.call-cc.org/ticket/608>
Chicken Scheme <http://www.call-with-current-continuation.org/>
Chicken Scheme is a compiler for the Scheme programming language.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]