[movitz-cvs] CVS update: movitz/losp/muerte/format.lisp
Frode Vatvedt Fjeld
ffjeld at common-lisp.net
Thu May 20 17:47:24 UTC 2004
Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory common-lisp.net:/tmp/cvs-serv3082
Modified Files:
format.lisp
Log Message:
For (format nil ...) make initial output string somewhat longer.
Date: Thu May 20 13:47:24 2004
Author: ffjeld
Index: movitz/losp/muerte/format.lisp
diff -u movitz/losp/muerte/format.lisp:1.4 movitz/losp/muerte/format.lisp:1.5
--- movitz/losp/muerte/format.lisp:1.4 Tue Apr 13 10:21:57 2004
+++ movitz/losp/muerte/format.lisp Thu May 20 13:47:24 2004
@@ -10,7 +10,7 @@
;;;; Author: Frode Vatvedt Fjeld <frodef at acm.org>
;;;; Created at: Sat Mar 23 01:18:36 2002
;;;;
-;;;; $Id: format.lisp,v 1.4 2004/04/13 14:21:57 ffjeld Exp $
+;;;; $Id: format.lisp,v 1.5 2004/05/20 17:47:24 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -30,7 +30,7 @@
(declare (dynamic-extent args))
(let ((destination
(case destination
- ((nil) (make-array (* 2 (length control))
+ ((nil) (make-array (* 3 (length control))
:element-type 'character
:fill-pointer 0))
((t) *standard-output*)
More information about the Movitz-cvs
mailing list