From 65cc9b0cc5028675a2a6a3727b28db312b08a317 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Fri, 9 Mar 2001 19:47:18 +0000
Subject: [PATCH] Fix typo in unparsing wild versions in new scheme; ".~~*~~"
 => ".~*~".

---
 code/filesys.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/code/filesys.lisp b/code/filesys.lisp
index f588557ac..b660e78b1 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.60 2001/02/23 18:56:11 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.61 2001/03/09 19:47:18 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -405,7 +405,7 @@
 	(strings (unparse-unix-piece type)))
       (when version-supplied
 	(strings (if (eq version :wild)
-		     ".~~*~~"
+		     ".~*~"
 		     (format nil ".~~~D~~" version)))))
     (and (strings) (apply #'concatenate 'simple-string (strings)))))
 
@@ -464,7 +464,7 @@
 	(when version-needed
 	  (typecase pathname-version
 	    ((member :wild)
-	     (strings ".~~*~~"))
+	     (strings ".~*~"))
 	    (integer
 	     (strings (format nil ".~~~D~~" pathname-version)))
 	    (t
-- 
GitLab