[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
"open" init files from LISP
- To: sjobrg at MIT-AI
- Subject: "open" init files from LISP
- From: JONL at MIT-MC (Jon L White)
- Date: Tue, 26 Feb 80 20:06:00 GMT
- Cc: (BUG LISP) at MIT-MC, bgs at MIT-AI
- Original-date: 26 FEB 1980 1506-EST
LOAD will normally cause a file to be closed, *** if *** it
successfully reads to the end; often a person's LISP.INIT file
will remain hanging open because there is no reason to read
the whole file. The trick I use for init files is to
have the last form in the file be a PROG or something which
will among other things explicity close INFILE. Generally
the need for such a "trick" is that the init file does some
kind of THROW out of the loop which is "loading" it.
But as for why this loser had lots of dsk channels open while
doing multiple LOADs, maybe each load manages to abort
abnormally somehow?