aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2000-09-29 18:46:34 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2000-09-29 18:46:34 +0000
commit24f9460f96fb8f6b5099b8cdcde6cdcdc09afb84 (patch)
tree747d07ae0430864313ca75d8d93e6ea03b4b40db /bin
parentd9ab4f39720d223aacf0024173a7772d07e529fb (diff)
Script for launching proofgeneral.
Diffstat (limited to 'bin')
-rw-r--r--bin/proofgeneral23
1 files changed, 23 insertions, 0 deletions
diff --git a/bin/proofgeneral b/bin/proofgeneral
new file mode 100644
index 00000000..220ae9df
--- /dev/null
+++ b/bin/proofgeneral
@@ -0,0 +1,23 @@
+#!/bin/sh
+#
+# Simple shell script for launching Proof General.
+#
+# Uses XEmacs in preference to Emacs
+#
+# You must edit PGHOME to the directory where (the lisp files of)
+# Proof General is installed.
+#
+# $Id$
+#
+
+# PGHOME=~/ProofGeneral
+PGHOME=/usr/share/emacs/ProofGeneral
+
+if which xemacs > /dev/null; then
+ EMACS=xemacs
+else
+ EMACS=emacs
+fi
+
+$EMACS -l $PGHOME/generic/proof-site.el
+