[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SUBFORK module (LEDIT)
- To: Bug-LISP at MIT-MC
- Subject: SUBFORK module (LEDIT)
- From: David Eppstein <CSD.Kronj at SU-SCORE>
- Date: Mon, 1 Nov 82 08:55:00 GMT
- Original-date: 1 Nov 1982 0055-PST
The lines in SI:GIVUP-TTYINTS that set the inferior fork's capabilities
are switched, so that the fork gets no caps, causing LEDIT to lose big.
Old code:
(jsys #.EPCAP handle
(boole 2 1_18 cap_inferior)
(boole 2 1_18 cap_poss_inf)
1)
Correct code:
(jsys #.EPCAP handle
(boole 2 1_18 cap_poss_inf)
(boole 2 1_18 cap_inferior)
1)
David
-------