Skip to content
Snippets Groups Projects
Commit 71e6b3c5 authored by wlott's avatar wlott
Browse files

Remove :no-clx and :no-hemlock from *features* if they are being loaded.

parent 9d57a7bc
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -65,8 +65,10 @@
(gc-off) (gc-off)
(when load-clx (when load-clx
(setf *features* (delete :no-clx *features* :test #'eq))
(load "library:subsystems/clx-library")) (load "library:subsystems/clx-library"))
(when load-hemlock (when load-hemlock
(setf *features* (delete :no-hemlock *features* :test #'eq))
(load "library:subsystems/hemlock-library")) (load "library:subsystems/hemlock-library"))
(dolist (f other) (load f)) (dolist (f other) (load f))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment