From bcff117709d98d1f195ee11d993a51c48e9c0c96 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Mon, 25 May 1992 14:36:43 +0000
Subject: [PATCH] When neither -core nor CMUCLLIB is set, actually fill in the
 core with the default instead of leaving it NIL.

---
 ldb/ldb.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ldb/ldb.c b/ldb/ldb.c
index 07fe7a2df..db70934e8 100644
--- a/ldb/ldb.c
+++ b/ldb/ldb.c
@@ -1,4 +1,4 @@
-/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/ldb.c,v 1.19 1992/04/28 21:49:00 wlott Exp $ */
+/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/ldb.c,v 1.20 1992/05/25 14:36:43 wlott Exp $ */
 /* Lisp kernel core debugger */
 
 #include <stdio.h>
@@ -105,6 +105,7 @@ char *envp[];
 	if (core == NULL) {
 	    strcpy(buf, "/usr/misc/.cmucl/lib/");
 	    strcat(buf, default_core);
+	    core = buf;
 	}
     }
 
-- 
GitLab