From d11ccfa8025eade1ef76ddecd2a3ab313b50d623 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 30 Jan 1992 16:23:49 +0000
Subject: [PATCH] Fixed PARSE-UNIX-NAMESTRING to use '(:absolute) as the
 directory when there are no directories but there was an initial slash
 instead of using NIL.

---
 code/filesys.lisp | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/code/filesys.lisp b/code/filesys.lisp
index 4096654e7..57ae56e05 100644
--- a/code/filesys.lisp
+++ b/code/filesys.lisp
@@ -6,7 +6,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.24 1991/12/20 21:17:37 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.25 1992/01/30 16:23:49 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -281,9 +281,12 @@
 				   (string= dir ".."))
 			      (dirs :up)
 			      (dirs dir))))))
-		  (if (dirs)
-		      (cons (if absolute :absolute :relative) (dirs))
-		      nil))
+		  (cond (absolute
+			 (cons :absolute (dirs)))
+			((dirs)
+			 (cons :relative (dirs)))
+			(t
+			 nil)))
 		name
 		type
 		version)))))
-- 
GitLab