view etc/editclient.sh @ 555:93749ba3e629

[xemacs-hg @ 2001-05-21 08:07:13 by yoshiki] Karl M. Hegbloom's patch "[cus-edit.el] Edit faces: Support GTK Window System also.", <87d7bdfwxw.fsf@microsharp.com> * cus-edit.el (custom-display): Support the GTK Window System also.
author yoshiki
date Mon, 21 May 2001 08:07:14 +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