Fix uri->pathname too, just for completeness.
authorMatt Birkholz <puck@birchwood-abbey.net>
Tue, 27 May 2014 16:41:16 +0000 (09:41 -0700)
committerMatt Birkholz <puck@birchwood-abbey.net>
Tue, 27 May 2014 16:41:16 +0000 (09:41 -0700)
(uri->pathname (pathname->uri "./file")) does not signal an error, but
it does not produce the same directory component as (->pathname
"./file").  Now (pathname=? (->pathname "./file") (uri->pathname...))
is #t, at least on Unix(?).

src/runtime/pathnm.scm

index 766a5281920607ccb61f26c7a7c74dce2119ebcd..01c4fe7e60f620585a88262628a702ca56819a21 100644 (file)
@@ -348,6 +348,7 @@ these rules:
           (map (lambda (x)
                  (cond ((string=? x "*") 'WILD)
                        ((string=? x "..") 'UP)
+                       ((string=? x ".") 'HERE)
                        (else (utf8-string->string x))))
                (uri-path uri)))
          (lose