diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-04-26 21:39:27 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-04-26 21:56:00 +0200 |
commit | bd22f1c768e2d5c7ec6264b8c68cc56019daccf4 (patch) | |
tree | f6d94ffc3a116a3a16fb11096b4d993a9d482c47 /libguile/read.c | |
parent | 816e3edf152f8c4d8a219e0bf24daa908c710adf (diff) | |
download | guile-bd22f1c768e2d5c7ec6264b8c68cc56019daccf4.tar.gz |
Remove extraneous semi-colon in `read.c'.
Diffstat (limited to 'libguile/read.c')
-rw-r--r-- | libguile/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |