Skip to content
Snippets Groups Projects
Commit c07f243f authored by ram's avatar ram
Browse files

Fix old-style in-package.

parent d4307665
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/hemlock/rompsite.lisp,v 1.6 1994/07/05 15:54:27 hallgren Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/rompsite.lisp,v 1.7 1994/10/07 20:47:21 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -16,13 +16,15 @@ ...@@ -16,13 +16,15 @@
;;; Stuff to set up the packages Hemlock uses. ;;; Stuff to set up the packages Hemlock uses.
;;; ;;;
(in-package "HEMLOCK-INTERNALS" (unless (find-package "HEMLOCK-INTERNALS")
:nicknames '("HI") (make-package "HEMLOCK-INTERNALS"
:use '("LISP" "EXTENSIONS" "SYSTEM")) :nicknames '("HI")
:use '("LISP" "EXTENSIONS" "SYSTEM")))
;;; ;;;
(in-package "HEMLOCK" (unless (find-package "HEMLOCK")
:nicknames '("ED") (make-package "HEMLOCK"
:use '("LISP" "HEMLOCK-INTERNALS" "EXTENSIONS" "SYSTEM")) :nicknames '("ED")
:use '("LISP" "HEMLOCK-INTERNALS" "EXTENSIONS" "SYSTEM")))
;;; ;;;
(in-package "SYSTEM") (in-package "SYSTEM")
(export '(without-hemlock %sp-byte-blt %sp-find-character (export '(without-hemlock %sp-byte-blt %sp-find-character
......
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