view etc/editclient.sh @ 2210:9361a78f86a0

[xemacs-hg @ 2004-08-11 02:04:03 by james] Mark really_abort() as a function that does not return.
author james
date Wed, 11 Aug 2004 02:04:12 +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