emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/geiser-chicken 0e84bba 013/102: The issue arose with numer


From: Philip Kaludercic
Subject: [nongnu] elpa/geiser-chicken 0e84bba 013/102: The issue arose with numerics, as well.
Date: Sun, 1 Aug 2021 18:26:46 -0400 (EDT)

branch: elpa/geiser-chicken
commit 0e84bbae12e7785912bf0ee497c14af723090f6b
Author: Dan Leslie <dan@ironoxide.ca>
Commit: Dan Leslie <dan@ironoxide.ca>

    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

[Prev in Thread] Current Thread [Next in Thread]