branch: elpa/geiser-guile
commit af1c5a38ba4b352837bcba85142332ec3e46f99a
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>
Small improvements.
---
geiser/introspection.scm | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/geiser/introspection.scm b/geiser/introspection.scm
index 62d3ce5..a158d66 100644
--- a/geiser/introspection.scm
+++ b/geiser/introspection.scm
@@ -37,9 +37,7 @@
(else (loop (car syms) (cdr syms))))))
(define (resolve-symbol sym)
- (and (symbol? sym)
- (module-bound? (current-module) sym)
- (eval sym (current-module))))
+ (module-ref (current-module) sym))
(define (obj-args obj)
(cond ((not obj) #f)