diff options
author | Gary Jennejohn <gj@FreeBSD.org> | 1999-06-22 22:02:00 +0000 |
---|---|---|
committer | Gary Jennejohn <gj@FreeBSD.org> | 1999-06-22 22:02:00 +0000 |
commit | 667b857a75108f87c7d632300d8daa76d4cfd5b8 (patch) | |
tree | e7cab26553335217e3efb1d07df88eeaa8e9da87 /editors/xemacs/files/xemacs21.sh | |
parent | Disable sound support for the Alpha. (diff) |
This is the latest version of xemacs - Xemacs 21.1.
This requires xemacs-packages which be will committed next. Xemacs now
allows the user to maintain packages himself. See DESCR.
This supersedes PR 11618, which was based on an older release.
This commit was blasted over a repository copy of xemacs20, which is why
there are so many changes.
Submitted by: Michael Elbel (me@freebsd.org)
Diffstat (limited to 'editors/xemacs/files/xemacs21.sh')
-rw-r--r-- | editors/xemacs/files/xemacs21.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/editors/xemacs/files/xemacs21.sh b/editors/xemacs/files/xemacs21.sh new file mode 100644 index 000000000000..80166e668d5f --- /dev/null +++ b/editors/xemacs/files/xemacs21.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# script to create the lock directory in case it was +# removed in /etc/rc +#echo -n ' Xemacs' +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 +exit 0 |