Raymond Toy pushed to branch issue-373-handle-temp-files at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • src/code/extensions.lisp
    ... ... @@ -672,8 +672,9 @@
    672 672
     		(unix::unix-mkdtemp (concatenate 'string ,template
    
    673 673
     						 "XXXXXX")))
    
    674 674
     	      (unless ,dirname
    
    675
    -		(error "Unable to create temp directory: ~A"
    
    675
    +		(error "Unable to create temporary directory: ~A"
    
    676 676
     		       (unix:get-unix-error-msg ,err)))
    
    677
    +	      (setf ,dirname (concatenate 'string ,dirname "/"))
    
    677 678
     	      (locally ,@decls
    
    678 679
     		,@forms))
    
    679 680
     	 ;; Remove the temp directory and all its contents.  Is there a