File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 256256 instance)
257257 frames))
258258
259- (defvar *modules* nil )
259+ (defvar *debug- modules* nil )
260260(defvar *system-name* " " )
261261
262262(defgeneric grovel-component (component)
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))
You can’t perform that action at this time.
0 commit comments