mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-24 05:21:20 -08:00
dpp: always set zero-th variable with values
This commit is contained in:
parent
ef65a8b1ac
commit
91c45d09cd
1 changed files with 1 additions and 1 deletions
|
|
@ -813,7 +813,7 @@ put_return(void)
|
|||
}
|
||||
put_tabs(t);
|
||||
fprintf(out, "the_env->nvalues = %d;\n", nres);
|
||||
for (i = nres-1; i > 0; i--) {
|
||||
for (i = nres-1; i >= 0; i--) {
|
||||
put_tabs(t);
|
||||
fprintf(out, "the_env->values[%d] = __value%d;\n", i, i);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue