Mercurial > hg > xemacs-beta
view etc/editclient.sh @ 2625:f2bd34928a0f
[xemacs-hg @ 2005-03-01 22:43:31 by aidan]
(Slightly Revised) Add configure check for XtRegisterDrawable
No feedback yet from Vin on whether this works, but I want to sleep now :-) .
author | aidan |
---|---|
date | Tue, 01 Mar 2005 22:43:41 +0000 |
parents | 3ecd8885ac67 |
children |
line wrap: on
line source
#!/bin/sh if gnuclient -batch -eval t >/dev/null 2>&1; then exec gnuclient ${1+"$@"} else xemacs -unmapped -f gnuserv-start & until gnuclient -batch -eval t >/dev/null 2>&1 do sleep 1 done exec gnuclient ${1+"$@"} fi