guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch master updated: Fix bug reading arrays with lengt


From: Andy Wingo
Subject: [Guile-commits] branch master updated: Fix bug reading arrays with lengths
Date: Tue, 02 Mar 2021 08:30:09 -0500

This is an automated email from the git hooks/post-receive script.

wingo pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new d69062d  Fix bug reading arrays with lengths
d69062d is described below

commit d69062daf1ac51f583155016c4aed5f72d59158d
Author: Andy Wingo <wingo@pobox.com>
AuthorDate: Tue Mar 2 14:29:34 2021 +0100

    Fix bug reading arrays with lengths
    
    * module/ice-9/read.scm (%read): Fix typo.
---
 module/ice-9/read.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module/ice-9/read.scm b/module/ice-9/read.scm
index 74f567d..29175d5 100644
--- a/module/ice-9/read.scm
+++ b/module/ice-9/read.scm
@@ -500,7 +500,7 @@
       (let lp ((ch ch) (chars '()))
         (when (eof-object? ch)
           (error "unexpected end of input while reading array"))
-        (if (memv ch '(#\( #\@ @\:))
+        (if (memv ch '(#\( #\@ #\:))
             (values ch
                     (if (null? chars)
                         #t



reply via email to

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