From d1c2430bf13224bfaefe53e097fefac0d13a3ecd Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 3 Jun 2012 06:35:37 +0800 Subject: [PATCH] remove extra space in some error messages --- src/racket/src/error.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/racket/src/error.c b/src/racket/src/error.c index 31a96aab25..0ab1ec52e3 100644 --- a/src/racket/src/error.c +++ b/src/racket/src/error.c @@ -1463,9 +1463,8 @@ char *scheme_make_arg_lines_string(const char *indent, int which, int argc, Sche pos += plen; o = error_write_to_string_w_max(argv[i], len, &l); - memcpy(other + pos, " ", 1); - memcpy(other + pos + 1, o, l); - pos += l + 1; + memcpy(other + pos, o, l); + pos += l; } } other[pos] = 0;