>>>> "Bill" == William M Perry
<wmperry(a)aventail.com> writes:
Bill> So you can create a gtk app in batch or TTY mode.
I want the feature of being able to open any device from batch mode
(for running GUI tests in the test suite for example). I'd like batch
mode to simply mean "don't open any devices, let lisp code do that".
And the user should be able to "go interactive" from batch mode by
doing something like
xemacs -batch -eval '(progn (make-frame-on-display "foo:0")
(command-loop))'
The test suite can do something like:
(when (and (featurep 'x11) (getenv "DISPLAY"))
... run some X tests ...