From bd22f1c768e2d5c7ec6264b8c68cc56019daccf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 26 Apr 2008 21:39:27 +0200 Subject: [PATCH] Remove extraneous semi-colon in `read.c'. --- libguile/ChangeLog | 6 ++++++ libguile/read.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index a68a03dab..d35b1b6a8 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,9 @@ +2008-04-26 Ludovic Courtès + + * read.c (scm_read_sexp): Remove extraneous semi-colon at + end-of-line, which broke compilation with GCC 2.7. Reported by + Alain Guibert . + 2008-04-24 Ludovic Courtès * Makefile.am (DEFAULT_INCLUDES): New. Fixes compilation on diff --git a/libguile/read.c b/libguile/read.c index 5a448b7f8..47b80041e 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -292,7 +292,7 @@ scm_read_sexp (int chr, SCM port) register int c; register SCM tmp; register SCM tl, ans = SCM_EOL; - SCM tl2 = SCM_EOL, ans2 = SCM_EOL, copy = SCM_BOOL_F;; + SCM tl2 = SCM_EOL, ans2 = SCM_EOL, copy = SCM_BOOL_F; static const int terminating_char = ')'; /* Need to capture line and column numbers here. */