This is how I export characters to :barand :bazfrom a package foo:
(in-package :cl-user)
(defpackage foo
(:use :cl)
(:export :bar :baz))
(in-package :foo)
When I remove :bazfrom the list of exported characters, SBCL complains and compilation fails.
warning:
FOO also exports the following symbols:
(FOO:BAZ)
How can I make SBCL forget about :bazwithout rebooting SLIME?
source
share