Skip to content

Commit

Permalink
* swank-abcl.lisp (find-definitions): Call ext:resolve before
Browse files Browse the repository at this point in the history
finding definitions, for the symbol may be not autoloaded yet.
  • Loading branch information
stassats committed Aug 18, 2012
1 parent fd63054 commit 2767c53
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2012-08-18 Stas Boukarev <stassats@gmail.com>

* swank-abcl.lisp (find-definitions): Call ext:resolve before
finding definitions, for the symbol may be not autoloaded yet.

2012-08-04 Stas Boukarev <stassats@gmail.com>

* swank-sbcl.lisp (call-with-debugging-environment): Use
Expand Down
1 change: 1 addition & 0 deletions swank-abcl.lisp
Expand Up @@ -594,6 +594,7 @@
if (try dir) return it)))))

(defimplementation find-definitions (symbol)
(ext:resolve symbol)
(let ((srcloc (source-location symbol)))
(and srcloc `((,symbol ,srcloc)))))

Expand Down

0 comments on commit 2767c53

Please sign in to comment.