From 0556eb1a13043efb640e99d1ef87eb02ba51bf5c Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 5 Dec 1991 05:47:57 +0000
Subject: [PATCH] Changed the defknown for format to allow a function instead
 of a control-string.

---
 compiler/fndb.lisp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp
index 8fe9e92b7..b804c3631 100644
--- a/compiler/fndb.lisp
+++ b/compiler/fndb.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.33 1991/12/02 23:41:47 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.34 1991/12/05 05:47:57 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -874,7 +874,8 @@
 (defknown write-byte (integer stream) integer
   (explicit-check))
 
-(defknown format ((or streamlike string) string &rest t) (or string null)
+(defknown format ((or streamlike string) (or string function) &rest t)
+  (or string null)
   (explicit-check))
 
 (defknown (y-or-n-p yes-or-no-p) (&optional string &rest t) boolean
-- 
GitLab