view etc/editclient.sh @ 4473:0204391fc17c

#'require hyper-apropos in #'describe-property-list, for hyper-apropos-face 2008-06-04 Aidan Kehoe <kehoea@parhasard.net> * descr-text.el (describe-property-list): #'require hyper-apropos, since we use hyper-apropos-face
author Aidan Kehoe <kehoea@parhasard.net>
date Wed, 04 Jun 2008 21:57:49 +0200
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