From 71e6b3c5e379c97f5c12a40fdf26ea6413eb5139 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 8 Jun 1993 13:04:40 +0000 Subject: [PATCH] Remove :no-clx and :no-hemlock from *features* if they are being loaded. --- tools/config.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/config.lisp b/tools/config.lisp index 29e99e981..004b2025f 100644 --- a/tools/config.lisp +++ b/tools/config.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/config.lisp,v 1.2 1993/01/14 02:23:50 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/config.lisp,v 1.3 1993/06/08 13:04:40 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -65,8 +65,10 @@ (gc-off) (when load-clx + (setf *features* (delete :no-clx *features* :test #'eq)) (load "library:subsystems/clx-library")) (when load-hemlock + (setf *features* (delete :no-hemlock *features* :test #'eq)) (load "library:subsystems/hemlock-library")) (dolist (f other) (load f)) -- GitLab