[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: (BUG LISPM) at MIT-AI
- From: SHIPMN at MIT-AI (David W. Shipman)
- Date: Tue ,29 Jul 80 14:01:00 EDT
After bringing over version 32.2 to cadr-12 I attempted to modify the
vertical retrace in tv:cpt-sync2 using the inspector. It hung with the
run bar set. I then tried to reset it "by hand" using:
(setf (nth 8 tv:cpt-sync2) 72.)
The same thing happened. The problem is not in nth, setf, or the inspector
but something about tv:cpt-sync2. The following worked:
(setq tv:old-cpt-sync2 tv:cpt-sync2)
(setq tv:cpt-sync2 (copylist tv:cpt-sync2))
(setf (nth 8 tv:cpt-sync2) 72.)
(tv:cpt-setup)
That solved the immediate problem, but it was a little wierd.