[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SUBFORK module (LEDIT)



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
-------