[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-143-g29ace
From: |
Ludovic Courtès |
Subject: |
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-143-g29ace17 |
Date: |
Mon, 04 Mar 2013 08:04:23 +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=29ace173b170a5d77e6becb30fb1d9f253a373d5
The branch, stable-2.0 has been updated
via 29ace173b170a5d77e6becb30fb1d9f253a373d5 (commit)
via 69b6da07c386446d16a11cc41cb64b486199413c (commit)
from 994d87be35769480b04c9f96085a7a0b41040c9d (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 29ace173b170a5d77e6becb30fb1d9f253a373d5
Author: Ludovic Courtès <address@hidden>
Date: Mon Mar 4 09:04:16 2013 +0100
doc: Rename "Texinfo" node to "Texinfo Processing".
* doc/ref/texinfo.texi (Texinfo): Rename to...
(Texinfo Processing): ... this.
* doc/ref/guile.texi (Guile Modules): Update menu.
commit 69b6da07c386446d16a11cc41cb64b486199413c
Author: Ludovic Courtès <address@hidden>
Date: Mon Mar 4 08:56:47 2013 +0100
Use `scm_is_eq' in filesys.c.
* libguile/filesys.c (is_file_name_separator): Use `scm_is_eq' instead
of `=='. Fixes <http://hydra.nixos.org/build/4261579>.
-----------------------------------------------------------------------
Summary of changes:
doc/ref/guile.texi | 2 +-
doc/ref/texinfo.texi | 8 ++++++--
libguile/filesys.c | 4 ++--
3 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/doc/ref/guile.texi b/doc/ref/guile.texi
index a6e3e7d..1e4a95a 100644
--- a/doc/ref/guile.texi
+++ b/doc/ref/guile.texi
@@ -372,7 +372,7 @@ available through both Scheme and C interfaces.
* Curried Definitions:: Extended @code{define} syntax.
* Statprof:: An easy-to-use statistical profiler.
* SXML:: Parsing, transforming, and serializing XML.
-* Texinfo:: Munging documents written in Texinfo.
+* Texinfo Processing:: Munging documents written in Texinfo.
@end menu
@include slib.texi
diff --git a/doc/ref/texinfo.texi b/doc/ref/texinfo.texi
index b5ef393..ec06863 100644
--- a/doc/ref/texinfo.texi
+++ b/doc/ref/texinfo.texi
@@ -3,8 +3,12 @@
@c Copyright (C) 2013 Free Software Foundation, Inc.
@c See the file guile.texi for copying conditions.
address@hidden Texinfo
address@hidden Texinfo
address@hidden Note: Don't use "Texinfo" as the node name here because this
leads to
address@hidden a clash in the HTML output between texinfo.html (from the
"texinfo"
address@hidden node) and Texinfo.html on case-insensitive file systems such as
address@hidden HFS+ (MacOS X).
address@hidden Texinfo Processing
address@hidden Texinfo Processing
@menu
* texinfo:: Parse texinfo files or fragments into @code{stexi}, a
scheme representation
diff --git a/libguile/filesys.c b/libguile/filesys.c
index f7c83e0..cd4be79 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -463,10 +463,10 @@ static int fstat_Win32 (int fdes, struct stat *buf)
static int
is_file_name_separator (SCM c)
{
- if (c == SCM_MAKE_CHAR ('/'))
+ if (scm_is_eq (c, SCM_MAKE_CHAR ('/')))
return 1;
#ifdef __MINGW32__
- if (c == SCM_MAKE_CHAR ('\\'))
+ if (scm_is_eq (c, SCM_MAKE_CHAR ('\\')))
return 1;
#endif
return 0;
hooks/post-receive
--
GNU Guile
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-143-g29ace17,
Ludovic Courtès <=