Skip to content

Commit

Permalink
Fix *print-length* on print-vector
Browse files Browse the repository at this point in the history
  • Loading branch information
Affonso-Gui committed Mar 28, 2019
1 parent 0f7711f commit 3bef60c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lisp/c/printer.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ int prlevel;
writech(f,' ');}
while (i<n && (nullprlen || prlength>0)) {
prin1(ctx,vec->c.vec.v[i++],f,prlevel);
if (i<n) writech(f,' '); }
if (i<n) writech(f,' ');
prlength--; }
if (i<n) writestr(f,(byte *)"... ",4);
writech(f,')');}
return(vec);}
Expand Down

0 comments on commit 3bef60c

Please sign in to comment.