From ... From: Erik Naggum Subject: Re: Setting logical hosts and translations for a directory hierarchy Date: 2000/03/22 Message-ID: <3162699348428723@naggum.no>#1/1 X-Deja-AN: 600763635 References: mail-copies-to: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 953712553 17723 195.0.192.66 (22 Mar 2000 08:09:13 GMT) Organization: Naggum Software; vox: +47 8800 8879; fax: +47 8800 8601; http://www.naggum.no User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.5 Mime-Version: 1.0 NNTP-Posting-Date: 22 Mar 2000 08:09:13 GMT Newsgroups: comp.lang.lisp * Paolo Amoroso | Since ACL is the most ANSI compliant, it's easy to get what I need. I have | added the following to ~/.clinit.cl: | | (setf (logical-pathname-translations "clocc") | '(("**;*.*.*" "/home/paolo/projects/clocc/") | (";**;*.*.*" "/home/paolo/projects/clocc/"))) although this works, you should really have matching wildcards in the translation: (setf (logical-pathname-translations "clocc") '(("**;*.*.*" "/home/paolo/projects/clocc/**/*.*") (";**;*.*.*" "/home/paolo/projects/clocc/**/*.*"))) this yields the same results as the ones you have in Allegro CL, but they may work better in the other CLs, too. #:Erik