[PATCH 0/4] some minor fixes

2013-12-10 Thread Tom Tromey
Hi. Here's a small series of patches to fix a few things I noticed when building guile git master yesterday. Since the Guile style seems to be just to have GNU-style ChangeLog entries in the git commit message, I'll put the descriptions here: 1. Remove an unused static function. This caused a c

[PATCH 2/4] fix bug #14193

2013-12-10 Thread Tom Tromey
Fix bug #14193. * configure.ac (LIBLOBJS): Add prefix to computed .lo file name so dependencies work properly. --- configure.ac | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 92dcb1e..34c4aa4 100644 --- a/confi

[PATCH 1/4] remove unused function

2013-12-10 Thread Tom Tromey
* libguile/gc.c (scm_i_tag_name): Remove. --- libguile/gc.c | 78 --- 1 file changed, 78 deletions(-) diff --git a/libguile/gc.c b/libguile/gc.c index 4ec57aa..7015af9 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -848,84 +848,6

[PATCH 3/4] add missing FUNC_NAME defines

2013-12-10 Thread Tom Tromey
* libguile/pairs.c: Add missing FUNC_NAME defines. --- libguile/pairs.c | 86 +++- 1 file changed, 85 insertions(+), 1 deletion(-) diff --git a/libguile/pairs.c b/libguile/pairs.c index 1a3c5a1..f504869 100644 --- a/libguile/pairs.c +++

[PATCH 4/4] fix two small Texinfo bugs

2013-12-10 Thread Tom Tromey
* doc/ref/api-macros.texi (Macro Expansion): Use @ref, not @xref. * doc/ref/compiler.texi (Bytecode): Use a period after @xref. --- doc/ref/api-macros.texi | 2 +- doc/ref/compiler.texi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ref