From 9ea8d0c778ee474c7702e0afa6e878a3e05a3815 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 24 Mar 2015 15:43:21 -0400 Subject: [PATCH] Removed extraneous newlines --- runtime.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime.h b/runtime.h index f35db482..3320b65c 100644 --- a/runtime.h +++ b/runtime.h @@ -650,8 +650,8 @@ static object _Cyc_write(x) object x; {object tmp = nil; object has_cycle = boolean_f; int i = 0; - if (nullp(x)) {printf("()\n"); return x;} - if (obj_is_char(x)) {printf("#\\%c\n", obj_obj2char(x)); return x;} + if (nullp(x)) {printf("()"); return x;} + if (obj_is_char(x)) {printf("#\\%c", obj_obj2char(x)); return x;} switch (type_of(x)) {case string_tag: printf("\"%s\"", ((string_type *) x)->str);