guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.1-147-ge780c


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.1-147-ge780c14
Date: Fri, 01 Jul 2011 13:29:57 +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=e780c14fd0fd2572eaebc2949f6a67fc773c2835

The branch, stable-2.0 has been updated
       via  e780c14fd0fd2572eaebc2949f6a67fc773c2835 (commit)
      from  1f7945a768a8df06ad208ed2846dfe4f92e1515a (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 e780c14fd0fd2572eaebc2949f6a67fc773c2835
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jul 1 15:29:51 2011 +0200

    i18n: Don't use `!=' to compare SCMs.
    
    * libguile/i18n.c (install_locale)[!USE_GNU_LOCALE_API]: Use
      `SCM_UNBNDP' instead of `!='.

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

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

diff --git a/libguile/i18n.c b/libguile/i18n.c
index b22b332..f9ec723 100644
--- a/libguile/i18n.c
+++ b/libguile/i18n.c
@@ -400,7 +400,7 @@ install_locale (scm_t_locale locale)
         account.  */
       category_mask |= locale->category_mask;
 
-      if (locale->base_locale != SCM_UNDEFINED)
+      if (!SCM_UNBNDP (locale->base_locale))
        locale = (scm_t_locale) SCM_SMOB_DATA (locale->base_locale);
       else
        locale = NULL;


hooks/post-receive
-- 
GNU Guile



reply via email to

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