Navigation Menu

Skip to content
This repository has been archived by the owner on Jan 23, 2018. It is now read-only.

Commit

Permalink
Fixed problem with inspector not being able to inspect an objects parts
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoduncan committed Mar 12, 2010
1 parent 6245068 commit 456f2da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/swank/commands/inspector.clj
Expand Up @@ -268,7 +268,9 @@
(if (and (zero? frame) *current-env*) (if (and (zero? frame) *current-env*)
(let [locals (local-non-functions *current-env*) (let [locals (local-non-functions *current-env*)
object (locals (nth (keys locals) index))] object (locals (nth (keys locals) index))]
(inspect-object object)))) (with-emacs-package
(reset-inspector)
(inspect-object object)))))
(defslimefn inspector-nth-part [index] (defslimefn inspector-nth-part [index]
(get @*inspectee-parts* index)) (get @*inspectee-parts* index))
Expand Down

0 comments on commit 456f2da

Please sign in to comment.