Temporary files are now also cleaned up when exiting via #'QUIT.

This commit is contained in:
jjgarcia 2005-01-12 10:09:55 +00:00
parent adc4a64a74
commit 16f131d3ef
2 changed files with 3 additions and 0 deletions

View file

@ -72,6 +72,8 @@ ECL 1.0
- User break with Ctrl+C is now also capture under Windows.
- Temporary files are now also cleaned up when exiting via #'QUIT.
* Internals:
- The compiler now uses a more detailed tree to represent the code, keeping

View file

@ -443,6 +443,7 @@ cl_boot(int argc, char **argv)
if (!FIXNUMP(code))
FEerror("Illegal exit code: ~S.", 1, code);
i = fix(code);
cl_shutdown();
exit(i);
@)