branch: elpa/geiser-chicken
commit 0e84bbae12e7785912bf0ee497c14af723090f6b
Author: Dan Leslie <[email protected]>
Commit: Dan Leslie <[email protected]>

    The issue arose with numerics, as well.
    
    This change should fix it for most any input.
---
 geiser/emacs.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geiser/emacs.scm b/geiser/emacs.scm
index 67f5449..03c5d97 100644
--- a/geiser/emacs.scm
+++ b/geiser/emacs.scm
@@ -229,7 +229,7 @@
     (string-append "^([^#]+#)*" (regexp-escape prefix)))
 
   (define (describe-symbol sym #!key (exact? #f))
-    (let* ((str (symbol->string sym))
+    (let* ((str (->string sym))
            (found (apropos-information-list (regexp (make-apropos-regex str)) 
#:macros? #t)))
       (delete-duplicates
        (if exact?
@@ -339,7 +339,7 @@
 
   ;; Builds a signature list from an identifier
   (define (find-signatures toplevel-module sym)
-    (define str (symbol->string sym))
+    (define str (->string sym))
 
     (define (make-module-list sym module-sym)
       (if (null? module-sym)

Reply via email to