Skip to content

Commit 47e5478

Browse files
jesboatrfindler
authored andcommitted
Don't use racket/private/namespace (easy)
Summary: Instead of requiring `racket/private/namespace` for make-base-namespace, just grab it with `(only racket/base make-base-namespace)` instead. Test Plan: With the file open in DrRacket, a single `make-base-namespace` call was the only shown bound occurrence of the require.
1 parent 475a146 commit 47e5478

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drracket/gui-debugger/load-sandbox.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(require syntax/moddep
44
mzlib/class
5-
racket/private/namespace
5+
(only racket/base make-base-namespace)
66
mred)
77

88
(provide eval/annotations

0 commit comments

Comments
 (0)