branch: elpa/geiser-guile
commit d18c35b8d5aec0a6af11ffa52a67dedce34d0b7b
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>
Fix in symbol help signature displaying.
---
geiser/introspection.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/geiser/introspection.scm b/geiser/introspection.scm
index 5d86d62..29d059b 100644
--- a/geiser/introspection.scm
+++ b/geiser/introspection.scm
@@ -149,7 +149,7 @@
(let* ((args (obj-args obj))
(req (and args (car args)))
(opt (and args (cadr args))))
- (and args (if (not opt) `(,sym ,@req) `(,sym ,@req . ,opt)) sym)))
+ (and args (if (not opt) `(,sym ,@req) `(,sym ,@req . ,opt)))))
(define (symbol-documentation sym)
(let ((obj (symbol->obj sym)))