Skip to content

Commit 0be45b3

Browse files
committed
Unify *print-length* formatting
1 parent d1271fc commit 0be45b3

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

lisp/c/printer.c

+13-18
Original file line numberDiff line numberDiff line change
@@ -372,21 +372,19 @@ int prlevel;
372372
printstr(ctx,n,vec->c.str.chars,f); break;
373373
case ELM_INT:
374374
writestr(f,(byte *)"#i(",3);
375-
while (i<n && (nullprlen || prlength>0)) {
375+
while (i<n && (nullprlen || prlength-->0)) {
376376
printint(ctx,vec->c.ivec.iv[i++],f,intval(Spevalof(PRINTBASE)),
377377
0,0);
378-
if(i<n) writech(f,' ');
379-
prlength--; }
380-
if (i<n) writestr(f,(byte *)"... ",4);
378+
if(i<n) writech(f,' '); }
379+
if (i<n) writestr(f,(byte *)"...",3);
381380
writech(f,')');
382381
break;
383382
case ELM_FLOAT:
384383
writestr(f,(byte *)"#f(",3);
385-
while (i<n && (nullprlen || prlength>0)) {
384+
while (i<n && (nullprlen || prlength-->0)) {
386385
printflt(vec->c.fvec.fv[i++],f);
387-
if(i<n) writech(f,' ');
388-
prlength--; }
389-
if (i<n) writestr(f,(byte *)"... ",4);
386+
if(i<n) writech(f,' '); }
387+
if (i<n) writestr(f,(byte *)"...",3);
390388
writech(f,')');
391389
break;
392390
case ELM_FOREIGN:
@@ -401,11 +399,10 @@ int prlevel;
401399
writech(f,' ');
402400
printint(ctx,(eusinteger_t)vec->c.vec.size,f,intval(Spevalof(PRINTBASE)),0,0);
403401
writech(f,' ');}
404-
while (i<n && (nullprlen || prlength>0)) {
402+
while (i<n && (nullprlen || prlength-->0)) {
405403
prin1(ctx,vec->c.vec.v[i++],f,prlevel);
406-
if (i<n) writech(f,' ');
407-
prlength--; }
408-
if (i<n) writestr(f,(byte *)"... ",4);
404+
if (i<n) writech(f,' '); }
405+
if (i<n) writestr(f,(byte *)"...",3);
409406
writech(f,')');}
410407
return(vec);}
411408

@@ -495,16 +492,14 @@ register int prlevel;
495492
prin1(ctx,ccar(rest),f,prlevel-1);
496493
return;}
497494
writech(f,'(');
498-
prin1(ctx,fobj,f,prlevel);
499-
x=rest;
500495
while (islist(x) && !s_marked(x)) {
501-
if (!nullprlen && --prlength<=0) {
502-
writestr(f,(byte *)" ...",4);
496+
if (!nullprlen && prlength--<=0) {
497+
writestr(f,(byte *)"...",3);
503498
x=NIL; break;}
504499
else {
505-
writech(f,' ');
506500
prin1(ctx,ccar(x),f,prlevel);
507-
x=ccdr(x);} }
501+
x=ccdr(x);
502+
if (islist(x)) writech(f,' ');} }
508503
if (x!=NIL) { writestr(f,(byte *)" . ",3); prin1(ctx,x,f,prlevel);}
509504
writech(f,')'); }
510505

0 commit comments

Comments
 (0)