1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

Remove extraneous semi-colon in `read.c'.

This commit is contained in:
Ludovic Courtès 2008-04-26 21:39:27 +02:00
parent 816e3edf15
commit bd22f1c768
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-04-26 Ludovic Courtès <ludo@gnu.org>
* read.c (scm_read_sexp): Remove extraneous semi-colon at
end-of-line, which broke compilation with GCC 2.7. Reported by
Alain Guibert <alguibert+bts@free.fr>.
2008-04-24 Ludovic Courtès <ludo@gnu.org>
* Makefile.am (DEFAULT_INCLUDES): New. Fixes compilation on

View file

@ -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. */