From d43064a02a333b31f3999329587a6cc80ed80cc7 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Mon, 19 Nov 1990 05:06:13 +0000
Subject: [PATCH] Make the termination-form for dostring optional, because it's
 not always supplied.

---
 code/print.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/print.lisp b/code/print.lisp
index 6bfe53e73..f364041bd 100644
--- a/code/print.lisp
+++ b/code/print.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.13 1990/10/05 13:11:44 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.14 1990/11/19 05:06:13 wlott Exp $
 ;;;
 ;;; CMU Common Lisp printer.
 ;;;
@@ -74,7 +74,7 @@
 ;;; the variable so bound.  This function used to be part of Common Lisp, but
 ;;; is no more.  It lives on in the printer, though.
 ;;;
-(defmacro dostring ((variable init-form terminate-form) &rest body)
+(defmacro dostring ((variable init-form &optional terminate-form) &rest body)
   (let ((str (gensym))
 	(end (gensym))
 	(index (gensym)))
-- 
GitLab