From 10744b7c5007ccac19ea9654be6e749fe6a60992 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Tue, 30 Oct 2012 22:58:19 -0400 Subject: [PATCH] Fix formatting of comments in scm_read_array. * libguile/read.c (scm_read_array): Fix formatting of comments. --- libguile/read.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/libguile/read.c b/libguile/read.c index 469ed5b38..222891b7f 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -1134,8 +1134,7 @@ read_decimal_integer (SCM port, int c, ssize_t *resp) vectors. Also, the conflict between '#f' and '#f32' and '#f64' is handled here. - C is the first character read after the '#'. -*/ + C is the first character read after the '#'. */ static SCM scm_read_array (int c, SCM port, scm_t_read_opts *opts, long line, int column) { @@ -1147,13 +1146,11 @@ scm_read_array (int c, SCM port, scm_t_read_opts *opts, long line, int column) /* XXX - shortcut for ordinary vectors. Shouldn't be necessary but the array code can not deal with zero-length dimensions yet, and - we want to allow zero-length vectors, of course. - */ + we want to allow zero-length vectors, of course. */ if (c == '(') return scm_read_vector (c, port, opts, line, column); - /* Disambiguate between '#f' and uniform floating point vectors. - */ + /* Disambiguate between '#f' and uniform floating point vectors. */ if (c == 'f') { c = scm_getc (port);