mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-17 23:02:31 -08:00
In package.d, fix wrong use of end_loop_for_in.
This commit is contained in:
parent
349581a7ba
commit
a8cd321f53
1 changed files with 2 additions and 2 deletions
|
|
@ -224,12 +224,12 @@ ecl_make_package(cl_object name, cl_object nicknames, cl_object use_list)
|
|||
goto OUTPUT;
|
||||
}
|
||||
x->pack.nicknames = CONS(nick, x->pack.nicknames);
|
||||
} end_loop_for_in(nicknames);
|
||||
} end_loop_for_in;
|
||||
loop_for_in(use_list) {
|
||||
cl_object y = ECL_CONS_CAR(use_list);
|
||||
x->pack.uses = CONS(y, x->pack.uses);
|
||||
y->pack.usedby = CONS(x, y->pack.usedby);
|
||||
} end_loop_for_in(use_list);
|
||||
} end_loop_for_in;
|
||||
/* Finally, add it to the list of packages */
|
||||
cl_core.packages = CONS(x, cl_core.packages);
|
||||
OUTPUT:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue