diff options
| -rw-r--r-- | geiser/introspection.scm | 4 | 
1 files changed, 1 insertions, 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) | 
