[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Changing the CLISP prompt
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
- Subject: Changing the CLISP prompt
- From: Andrew Philpot <philpot@ptolemy.arc.nasa.gov>
- Date: Thu, 16 Jun 94 16:39:27 PDT
Hi.
Is is possible (without rebuilding from source - I don't have any C
compiler) to change the lisp prompt in CLISP?
I would like to make it print the name of the package. Instead of
>
I would like to make it look more like
USER>
In Allegro CL, with which I have more familiarity, I might have done
something more like (this is not exactly correct):
(setq *prompt* #'(lambda () (format nil "~A>"
(package-name *package*))))
Has anyone done something like this? I tried to look through the
(lisp) source but didn't find anything likely.
Thanks.
Andrew