Skip to content

Commit 913c46b

Browse files
committed
Rename modules
1 parent adadab0 commit 913c46b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cl-jupyter/kernel.lisp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
instance)
257257
frames))
258258

259-
(defvar *modules* nil)
259+
(defvar *debug-modules* nil)
260260
(defvar *system-name* "")
261261

262262
(defgeneric grovel-component (component)
@@ -270,15 +270,15 @@
270270
(push (make-instance 'jupyter:debug-module
271271
:name (format nil "~a ~a" *system-name* (asdf:component-name component))
272272
:path (asdf:component-pathname component))
273-
*modules*))
273+
*debug-modules*))
274274
(:method ((component asdf:parent-component))
275275
(loop for child in (asdf:component-children component)
276276
do (grovel-component child))))
277277

278278
(defmethod jupyter:debug-modules ((kernel kernel))
279-
(loop with *modules* = nil
279+
(loop with *debug-modules* = nil
280280
for *system-name* in (asdf:already-loaded-systems)
281-
finally (return *modules*)
281+
finally (return *debug-modules*)
282282
do (grovel-component (asdf:find-system *system-name*))))
283283

284284
(defmethod jupyter:debug-object-children-resolve ((instance debug-frame))

0 commit comments

Comments
 (0)