mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Removed extraneous newlines
This commit is contained in:
parent
b410e54836
commit
9ea8d0c778
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue