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-2-41-gcdf


From: Michael Gran
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-2-41-gcdf8f9e
Date: Fri, 21 Aug 2009 16:31:59 +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=cdf8f9e6328ff86c1828a16540a607c46f76963a

The branch, master has been updated
       via  cdf8f9e6328ff86c1828a16540a607c46f76963a (commit)
      from  3f47e5262103a01476c9df5275d23f4364cb4266 (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 cdf8f9e6328ff86c1828a16540a607c46f76963a
Author: Michael Gran <address@hidden>
Date:   Fri Aug 21 09:30:53 2009 -0700

    Use uc_tolower in number conversion
    
    * libguile/numbers.c (XDIGIT2UINT): use uc_tolower

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

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

diff --git a/libguile/numbers.c b/libguile/numbers.c
index ff963db..5812576 100644
--- a/libguile/numbers.c
+++ b/libguile/numbers.c
@@ -2488,7 +2488,7 @@ enum t_exactness {NO_EXACTNESS, INEXACT, EXACT};
 #define XDIGIT2UINT(d)                                                  \
   (uc_is_property_decimal_digit ((int) (unsigned char) d)               \
    ? (d) - '0'                                                          \
-   : tolower ((int) (unsigned char) d) - 'a' + 10)
+   : uc_tolower ((int) (unsigned char) d) - 'a' + 10)
 
 static SCM
 mem2uinteger (SCM mem, unsigned int *p_idx,


hooks/post-receive
-- 
GNU Guile




reply via email to

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