home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!agate!apple!apple!cambridge.apple.com!cfry@MIT.EDU
- From: cfry@MIT.EDU (Christopher Fry)
- Newsgroups: comp.lang.lisp.mcl
- Subject: Re: Logical pathname bug?
- Message-ID: <9211210055.AA21178@MIT.EDU>
- Date: 21 Nov 92 00:45:04 GMT
- Sender: info-mcl-request@cambridge.apple.com
- Lines: 23
- Approved: comp.lang.lisp.mcl@Cambridge.Apple.C0M
- Original-To: "Mark A. Tapia" <markt@dgp.toronto.edu>
- Original-Cc: info-mcl@cambridge.apple.com
-
- Thanks forthe logical pathname tutorial.
- Definitly FAQ material.
-
- From your message:
- Here is the replacement in MCL final which uses logical hosts:
- (setf (logical-pathname-translations "mcl")
- (list (list "mcl:**;*.*"
- (full-pathname
- "ccl:**;*.*")))
-
- (setf (logical-pathname-translations "Utilities")
- (list (list "Utilities:**;*.*"
- (full-pathname
- "mcl:utilities;**;*.*"))))
-
-
- The first arg to logical-pathname-translations, according to
- CLtL2 is a "host".
- In your example, I can almost believe mcl is a host, but
- no way can "Utilities" meet my notion of a "host".
- If the way you describe it is in fact how it works, CL2
- has sure made the concepts difficult by the misleading
- terminology.
-