>>>>> "Michael" == Michael A Koerber <[EMAIL PROTECTED]> writes:
Michael> Some time ago I wrote a simple interface to GNUPLOT.
Michael> I never have figured out how to make the mousing
Michael> capabilities of GNUPLOT work when running from CMUCL.
Michael> The following is the line I use to start up gnuplot
Michael> for writing commands to:
Michael> (setf *GNUPLOT-SESSION*
Michael> (ext:run-program "gnuplot" nil :wait nil :input :stream :output
t)))
Michael> I then just write to PROCESS-INPUT to make the plots.
I've played around a little with this. Perhaps it's because gnuplot
thinks it not an interactive session. I see that it calls gnuplot_x11
with the -noevents option, which disables mouse and key events.
Perhaps using the :pty option to run-program will help, but I don't
understand PTYs.
Ray