[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
CLI
- To: BUG-LISP at MIT-AI
- Subject: CLI
- From: Christopher C. Stacy <CSTACY at MIT-AI>
- Date: Sun, 21 Jun 81 09:59:00 GMT
- Original-date: 21 June 1981 05:59-EDT
On AI in MACLISP version 2100 with IOTA and MLMAC:
If I signal a CLI to a LISP job which has the following defined and
has run ENABLE-CLI-DEVICE, I get
;((CLI-HANDLER NIL) NIL) TOO MANY ARGS
(defun enable-cli-device ()
(setq cli-message #'cli-handler)
(sstatus cli T))
(defun cli-handler ()
(valret))
If I change ENABLE-CLI-HANDLER to
(defun enable-cli-device ()
(setq cli-message '(cli-handler))
(sstatus cli T))
It seems to work.
Chris