guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. release_1-9-7-70-g8a8


From: Michael Gran
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-7-70-g8a8da78
Date: Tue, 16 Feb 2010 04:42:46 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=8a8da78d97ffe779a1baa1098ed9497c5021759e

The branch, master has been updated
       via  8a8da78d97ffe779a1baa1098ed9497c5021759e (commit)
      from  44d3d1114447ee619bc9a900afb410273b56aae2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8a8da78d97ffe779a1baa1098ed9497c5021759e
Author: Michael Gran <address@hidden>
Date:   Mon Feb 15 20:45:58 2010 -0800

    Faster read of semicolon comments
    
    There is no need to do character encoding processing within
    semicolon comments.
    
    * libguile/read.c (scm_read_semicolon_comment): changed

-----------------------------------------------------------------------

Summary of changes:
 libguile/read.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libguile/read.c b/libguile/read.c
index ceef999..e17735e 100644
--- a/libguile/read.c
+++ b/libguile/read.c
@@ -860,7 +860,7 @@ scm_read_semicolon_comment (int chr, SCM port)
      always represents itself no matter what the encoding is.  */
   for (c = scm_get_byte_or_eof (port);
        (c != EOF) && (c != '\n');
-       c = scm_getc (port));
+       c = scm_get_byte_or_eof (port));
 
   return SCM_UNSPECIFIED;
 }


hooks/post-receive
-- 
GNU Guile




reply via email to

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