| |
Qilang |
Remind me what that was about again.
Btw
(DEFUN system (Command)
lets you call the OS in Qi/tk. Do you know what the SBCL equivalent
Mark
On 27 June, 13:45, snorgers <stefan.ta...@spray.se> wrote:
> /Stefan
> On 9 June, 21:18, snorgers <stefan.ta...@spray.se> wrote:
> > Hi,
> > I was reading the source code of the slime development environment.
> > This suggested that we should use a finish-output after every prompt
> > (qi::prompt)
> > Anyway using this addition fixed my sbcl version of qi-tk.
> > Threading or not this or similar things has to go in
> > Cheers
> - Show quoted text -
#+CLISP (LET ((File (gensym "F")))
(EXT:RUN-PROGRAM Command :INDIRECTP T :OUTPUT File)
(LET ((Output (COERCE (read-file-as-charlist File)
'STRING)))
(DELETE-FILE File)
Output)))
is?
> > invocation
> > actually we should probably insert this in the qi-source code at
> > qi::prompt locations,
> > (FINISH-OUTPUT)
> > Stefan- Hide quoted text -