summaryrefslogtreecommitdiff
path: root/editors/xemacs/files/xemacs21.sh
diff options
context:
space:
mode:
authorGary Jennejohn <gj@FreeBSD.org>2001-10-25 18:30:16 +0000
committerGary Jennejohn <gj@FreeBSD.org>2001-10-25 18:30:16 +0000
commit3b9c12a3d4f81d8562a60df6a4ec3cdae6ccadb4 (patch)
tree3a984653e13e2c50d51851923c240b2fc162f763 /editors/xemacs/files/xemacs21.sh
parentUpdate to 1.7.5 (diff)
Initial checkin of xemacs-devel after xemacs21 was repo copied.
Several people have requested this, so here it is. This port is intended to track the GAMMA version of the XEmacs editor. This is version is based on xemacs-21.4.4, which has a GTK binding. Note that the GTK support is buggy (at least on my system), although I haven't noticed any fatal problems, just annoying ones. There are other bugs in this version, e.g. any attempts to make font changes in the Options menu result in a Lisp error. Please do not file any PRs on XEmacs errors, the maintaine will terminate them with extreme prejudice. I haven't tested this at all on Alpha because beast won't let me in.
Diffstat (limited to 'editors/xemacs/files/xemacs21.sh')
-rw-r--r--editors/xemacs/files/xemacs21.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/editors/xemacs/files/xemacs21.sh b/editors/xemacs/files/xemacs21.sh
deleted file mode 100644
index 7c4961579079..000000000000
--- a/editors/xemacs/files/xemacs21.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# script to create the lock directory in case it was
-# removed in /etc/rc
-#echo -n ' Xemacs'
-
-case "$1" in
-start)
- if [ -d /var/run/emacs/lock ]
- then
- # delete any junk which may have been left around
- rm -f /var/run/emacs/lock/*
- else
- mkdir -p /var/run/emacs/lock
- fi
- # can always do this
- chmod 1777 /var/run/emacs/lock
- ;;
-stop)
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0