mirror of
https://github.com/usatiuk/psil.git
synced 2025-10-29 03:07:49 +01:00
remove useless loop
This commit is contained in:
@@ -46,10 +46,6 @@ Handle Compiler::compile(const Handle &src, Handle fake_env, const Handle &suffi
|
|||||||
rev.push(args.car());
|
rev.push(args.car());
|
||||||
args = args.cdr();
|
args = args.cdr();
|
||||||
}
|
}
|
||||||
while (!args.null()) {
|
|
||||||
rev.push(args.car());
|
|
||||||
args = args.cdr();
|
|
||||||
}
|
|
||||||
while (!rev.empty()) {
|
while (!rev.empty()) {
|
||||||
out.splice(compile(rev.top(), env));
|
out.splice(compile(rev.top(), env));
|
||||||
out.append(make_cmd(CONS));
|
out.append(make_cmd(CONS));
|
||||||
|
|||||||
Reference in New Issue
Block a user