Changeset 15330
- Timestamp:
- Apr 17, 2012, 6:25:54 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/source/level-1/l1-files.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/level-1/l1-files.lisp
r14662 r15330 103 103 ;; Reverse of above, take native namestring and make a Lisp pathname. 104 104 (defun native-to-pathname (name) 105 (pathname (%path-std-quotes name nil 106 #+windows-target "*;" 107 #-windows-target "*;:"))) 105 ;; This assumes that NAME is absolute and fully qualified, and 106 ;; that there'd be no benefit to (and some risk involved in) 107 ;; effectively merging it with whatever random thing may be 108 ;; in *DEFAULT-PATHNAME-DEFAULTS*. 109 ;; I -think- that that's true for all callers of this function. 110 (let* ((*default-pathname-defaults* #p"")) 111 (pathname (%path-std-quotes name nil 112 #+windows-target "*;" 113 #-windows-target "*;:")))) 108 114 109 115 (defun native-to-directory-pathname (name)
Note:
See TracChangeset
for help on using the changeset viewer.
