branch: elpa/geiser-guile
commit b853bac0c8d7682cf9eae5ffc4d41d6d8caeab6e
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>
Faster M-.
---
geiser/introspection.scm | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/geiser/introspection.scm b/geiser/introspection.scm
index 136ada3..7fce4c9 100644
--- a/geiser/introspection.scm
+++ b/geiser/introspection.scm
@@ -112,9 +112,7 @@
(make-location (module-filename name) #f))
(define (symbol-location sym)
- (let ((prog (resolve-symbol sym)))
- (cond ((program? prog) (program-location prog))
- ((symbol-module sym) => make-location-from-module-name)
- (else '()))))
+ (cond ((symbol-module sym) => make-location-from-module-name)
+ (else '())))
;;; introspection.scm ends here