Advertisement
Guest User

Untitled

a guest
Mar 6th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. [pjb@despina org.macports:0 ~]$ clall -r '(setf (logical-pathname-translations "H") (quote (("H:**;*.*" "/**/*.*") ("H:**;*" "/**/*"))))' '(translate-logical-pathname "H:TMP;P.LISP")'
  2.  
  3. Armed Bear Common Lisp --> ((#P"H:**;*.*" #P"/**/*.*") (#P"H:**;*" #P"/**/*"))
  4. Armed Bear Common Lisp --> #P"/tmp/p.lisp"
  5. Clozure Common Lisp --> (("H:**;*.*" "/**/*.*") ("H:**;*" "/**/*"))
  6. Clozure Common Lisp --> #P"/TMP/P.LISP"
  7. CLISP --> ((#P"H:**;*.*" "/**/*.*") (#P"H:**;*" "/**/*"))
  8. CLISP --> #P"/tmp/p.lisp"
  9. ECL --> ((#P"H:**;*.*" #P"/**/*.*")
  10. (#P"H:**;*" #P"/**/*"))
  11. ECL --> #P"/tmp/p.lisp"
  12. SBCL --> (("H:**;*.*" "/**/*.*") ("H:**;*" "/**/*"))
  13. SBCL --> #P"/tmp/p.lisp"
  14.  
  15. [pjb@despina org.macports:0 ~]$ clall -r '(setf (logical-pathname-translations "H") (quote (("H:TMP;P.LISP" "/tmp/p.lisp") ("H:**;*.*" "/**/*.*") ("H:**;*" "/**/*"))))' '(translate-logical-pathname "H:TMP;P.LISP")'
  16.  
  17. Armed Bear Common Lisp --> ((#P"H:TMP;P.LISP" #P"/tmp/p.lisp") (#P"H:**;*.*" #P"/**/*.*") (#P"H:**;*" #P"/**/*"))
  18. Armed Bear Common Lisp --> #P"/tmp/p.lisp"
  19. Clozure Common Lisp --> (("H:TMP;P.LISP" "/tmp/p.lisp") ("H:**;*.*" "/**/*.*") ("H:**;*" "/**/*"))
  20. Clozure Common Lisp --> #P"/tmp/p.lisp"
  21. CLISP --> ((#P"H:TMP;P.LISP" "/tmp/p.lisp") (#P"H:**;*.*" "/**/*.*") (#P"H:**;*" "/**/*"))
  22. CLISP --> #P"/tmp/p.lisp"
  23. ECL --> ((#P"H:TMP;P.LISP" #P"/tmp/p.lisp")
  24. (#P"H:**;*.*" #P"/**/*.*")
  25. (#P"H:**;*" #P"/**/*"))
  26. ECL --> #P"/tmp/p.lisp"
  27. SBCL --> (("H:TMP;P.LISP" "/tmp/p.lisp")
  28. ("H:**;*.*" "/**/*.*") ("H:**;*" "/**/*"))
  29. SBCL --> #P"/tmp/p.lisp"
  30.  
  31. [pjb@despina org.macports:0 ~]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement