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

[no subject]



From:     GRAND@MIT-AI
Date: Tue, 17 Oct 79 02:39:58 GMT
Original-Date: 10/16/79 22:39:58 EDT
Subject:
    To: GLS at MIT-AI
    CC: (BUG LISP) at MIT-AI
	    Isn't change (setq + -) to (or (equal - '+) (setq - '+))
    what I said?
No, you had 
		  Change (setq + -) to (or (equal + '+) (setq + -))
I presume that the effect you want is: if you type a "+" at the
top-level loop, you don't want the next	value of + to be "+".
Quux's rewriting of this as
		  change (SETQ + -) to (OR (EQUAL - '+) (SETQ + -)) 
would accomplish this (more or less at TLEVAL).