Mercurial > hg > xemacs-beta
view etc/editclient.sh @ 2034:51e4a77ed447
[xemacs-hg @ 2004-04-19 14:39:45 by james]
Move QUIT checking down one level to catch QUITP and avoid catching uses of
QUIT that have already disabled checking.
author | james |
---|---|
date | Mon, 19 Apr 2004 14:39:49 +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