summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/e3/files/emacs')
-rw-r--r--app-editors/e3/files/emacs17
1 files changed, 17 insertions, 0 deletions
diff --git a/app-editors/e3/files/emacs b/app-editors/e3/files/emacs
new file mode 100644
index 000000000000..41ced9968fdb
--- /dev/null
+++ b/app-editors/e3/files/emacs
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+E3=/usr/bin/e3
+whichE3=${E3}em
+
+if [ -f ${E3} ]; then
+ if [ -f ${whichE3} ]; then
+ for i in $@
+ do
+ ${whichE3} $i
+ done
+ else
+ echo ${whichE3}: file does not exist
+ fi
+else
+ echo "${E3}: file does not exist"
+fi