From 1edcb1382109f139e9eac25c8c3d9105bc7877c9 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sun, 8 Mar 1992 18:30:32 +0000
Subject: [PATCH] Added a call to FDEFN-INIT in %INITIAL-FUNCTION.

---
 code/lispinit.lisp | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/code/lispinit.lisp b/code/lispinit.lisp
index 98f068c8d..bee999fdc 100644
--- a/code/lispinit.lisp
+++ b/code/lispinit.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.31 1992/02/29 02:29:50 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/lispinit.lisp,v 1.32 1992/03/08 18:30:32 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -494,7 +494,10 @@
   ;; Many top-level forms call INFO, (SETF INFO).
   (print-and-call c::globaldb-init)
 
-  ;; Some of the random top-level forms call Make-Array, which calls Subtypep...
+  ;; Set up the fdefn database.
+  (print-and-call fdefn-init)
+
+  ;; Some of the random top-level forms call Make-Array, which calls Subtypep
   (print-and-call type-init)
 
   (let ((funs (nreverse *lisp-initialization-functions*)))
-- 
GitLab