branch: elpa/geiser-guile
commit 3cb7a6c91e21b1bc970832a09209452bb9b5c317
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>

    Guile: fix for rest marker in autodoc.
---
 geiser/doc.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geiser/doc.scm b/geiser/doc.scm
index e7640e6..3f060e3 100644
--- a/geiser/doc.scm
+++ b/geiser/doc.scm
@@ -78,7 +78,7 @@
     (let ((sgn `(,fun ,@req
                       ,@(if (not (null? opt)) (cons 'geiser-opt_marker opt) 
'())
                       ,@(if (not (null? key)) (cons 'geiser-key_maker key) 
'()))))
-      (if rest `(,@sgn 'geiser-rest_marker ,rest) sgn))))
+      (if rest `(,@sgn geiser-rest_marker ,rest) sgn))))
 
 (define (find-position args form)
   (let* ((lf (length form))

Reply via email to