From: Friedrich Dominicus
Subject: Some ExtraFun with logigal pathnames
Date: 
Message-ID: <87u0qm3blt.fsf@fbigm.here>
A bit like a follow-up to the other mail about Fun? with pathnames
with the same logical pathname as mentioned there:
(setf (logical-pathname-translations "test-pn")
               '(("**;*.*.*" "/var/tmp/**/*.*")))

now trying to load a lisp file
- sbcl (load "test-pn:test;t1.lisp")
CL-USER> (load "test-pn:test;t1.lisp")
T

- Allegro
CL-USER> (load "test-pn:test;t1.lisp")
T

- LispWorks
(load "test-pn:test;t1.lisp")
; Loading text file /var/tmp/test/t1.lisp
#P"/var/tmp/test/t1.lisp"

- CLisp
LOAD: Eine Datei mit Namen #1=test-pn:test;t1.lisp gibt es nicht.
   [Condition of type SYSTEM::SIMPLE-FILE-ERROR]

Restarts:
  0: [ABORT] Abort handling SLIME request.

Backtrace:
  0: Variablenbindungs-Frame bindet (~ = dynamisch):
  | ~ SYSTEM::*FASOUTPUT-STREAM* <--> NIL
  1: EVAL-Frame f�r Form (LOAD "test-pn:test;t1.lisp")
  2: EVAL-Frame f�r Form (SWANK:LISTENER-EVAL "(load
\"test-pn:test;t1.lisp\")

Ups. 

Again, what's the "right" thing.

Regards
Friedrich


-- 
Please remove just-for-news- to reply via e-mail.
From: Karsten
Subject: Re: Some ExtraFun with logigal pathnames
Date: 
Message-ID: <1103376074.243027.58940@c13g2000cwb.googlegroups.com>
> - CLisp
> LOAD: Eine Datei mit Namen #1=test-pn:test;t1.lisp gibt es nicht.

How is CUSTOM:*PARSE-NAMESTRING-ANSI* set in your clisp?
Try to set it to true

Karsten