Makes consistent with param:flonum-unparser-cutoff.
;;;; Pathname Merging
(define *default-pathname-defaults*)
-(define default-pathname-defaults)
+(define param:default-pathname-defaults)
;;; Kludge to support FLUID-LET:
(define (get-default-pathname-defaults)
(if (default-object? *default-pathname-defaults*)
- (default-pathname-defaults)
+ (param:default-pathname-defaults)
*default-pathname-defaults*))
(define (merge-pathnames pathname #!optional defaults default-version)
(set! host-types types)
(set! local-host (make-host host-type #f))))
(set! *default-pathname-defaults* #!default)
- (set! default-pathname-defaults
+ (set! param:default-pathname-defaults
(make-parameter (make-pathname local-host #f #f #f #f #f)))
(set! library-directory-path
(make-parameter
(cons standard-error-hook #f)
(cons standard-warning-hook #f)
(cons standard-breakpoint-hook #f)
- (cons default-pathname-defaults (default-pathname-defaults))
+ (cons param:default-pathname-defaults
+ (param:default-pathname-defaults))
(cons dynamic-handler-frames '())
(cons *bound-restarts*
(if (cmdl/parent cmdl) (*bound-restarts*) '())))
->namestring
->pathname
->truename
- default-pathname-defaults
directory-namestring
directory-pathname
directory-pathname-as-file
local-host
make-pathname
merge-pathnames
+ param:default-pathname-defaults
parse-namestring
pathname->uri
pathname-absolute?
(pathname-as-directory
((ucode-primitive working-directory-pathname))))))
(working-directory-pathname pathname)
- (default-pathname-defaults pathname))
+ (param:default-pathname-defaults pathname))
unspecific)
(define working-directory-pathname)
'SET-WORKING-DIRECTORY-PATHNAME!
(list name)))
(working-directory-pathname pathname)
- (default-pathname-defaults pathname)
+ (param:default-pathname-defaults pathname)
(cmdl/set-default-directory (nearest-cmdl) pathname)
pathname))
(define (with-working-directory-pathname name thunk)
(let ((pathname (new-pathname name)))
- (parameterize* (list (cons default-pathname-defaults pathname)
+ (parameterize* (list (cons param:default-pathname-defaults pathname)
(cons working-directory-pathname pathname))
thunk)))