Skip to content
Snippets Groups Projects
Commit d43064a0 authored by wlott's avatar wlott
Browse files

Make the termination-form for dostring optional, because it's not always

supplied.
parent 0dae10f5
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment