You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defmacro defplot (name &body spec)
"Define a plot NAME. Returns an object of PLOT class bound to a symbol NAME. Adds symbol to *all-plots*."
`(progn
(defparameter ,name (%defplot ',name ,@spec))
(setf (gethash (plot-name ,name) *all-plots*) ,name)
,name))
Produces the warning. The variable is actually defined, and the warning isn't issued at neither a SBCL REPL nor with slime, so I'm thinking it might be something with the interaction with common-lisp-jupyter. The notebook on github also shows the same behaviour and is a good way to reproduce the warning.
Any ideas?
The text was updated successfully, but these errors were encountered:
Title says it all. For example this macro:
When executed like this:
Produces the warning. The variable is actually defined, and the warning isn't issued at neither a SBCL REPL nor with slime, so I'm thinking it might be something with the interaction with common-lisp-jupyter. The notebook on github also shows the same behaviour and is a good way to reproduce the warning.
Any ideas?
The text was updated successfully, but these errors were encountered: