branch: elpa/geiser-guile
commit d71825cd8e95d4b17631d4f2ce0a26a12f67b199
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>
Small bug fix.
---
geiser/doc.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/geiser/doc.scm b/geiser/doc.scm
index 35c5bfb..a58f1d9 100644
--- a/geiser/doc.scm
+++ b/geiser/doc.scm
@@ -48,7 +48,7 @@
(else
(let ((lst (last form)))
(cond ((and (symbol? lst) (describe-application (list lst))))
- ((and (pair? lst) (not (memq (car lst) '(quote)))) (autodoc
lst))
+ ((and (pair? lst) (not (memq (car lst) '(quote))) (autodoc
lst)))
((pair? lst) (autodoc (flatten-last form)))
(else (describe-application form)))))))