From c638d7bd0c704c60677ed0bccf9aed91f55b6ac6 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 26 Mar 1992 05:55:23 +0000 Subject: [PATCH] Was testing the wrong special in ROOM when printing out whether or not the garbage collector was enabled. --- code/gc.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/gc.lisp b/code/gc.lisp index 5f12d482e..53c43a66f 100644 --- a/code/gc.lisp +++ b/code/gc.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/gc.lisp,v 1.12 1992/03/26 03:24:14 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/gc.lisp,v 1.13 1992/03/26 05:55:23 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -88,8 +88,8 @@ (format t "Control Stack Usage: ~10:D bytes.~%" (control-stack-usage)) (format t "Binding Stack Usage: ~10:D bytes.~%" (binding-stack-usage)) (format t "The current dynamic space is ~D.~%" (current-dynamic-space)) - (format t "Garbage collection is currently ~:[DISABLED~;enabled.~]~%" - *gc-trigger*)) + (format t "Garbage collection is currently ~:[enabled~;DISABLED~].~%" + *gc-inhibit*)) (defun room-intermediate-info () (room-minimal-info) -- GitLab