[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Infinite loop in Complr?
- To: (BUG LISP) at MIT-MC, JONL at MIT-MC
- Subject: Infinite loop in Complr?
- From: GJC at MIT-MC (George J. Carrette)
- Date: Sun, 14 Sep 80 01:19:00 GMT
- Original-date: 13 SEP 1980 2119-EDT
(defun gen-name ()
(funcall '#,((lambda (obarray) (intern 'p1pfx)) sobarray)))
Causes Complr to wegde itself for an indefinite amount
of time.
Apply seems to work fine:
(defun gen-name ()
(apply '#,((lambda (obarray) (intern 'p1pfx)) sobarray) nil))
(putprop 'gen-name
(get (let ((obarray sobarray) (intern 'p1pfx))) 'subr)
'subr)
works even better, but is much to simple.