summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/check.sh b/check.sh
index 47522f5..8deaf1e 100755
--- a/check.sh
+++ b/check.sh
@@ -2,7 +2,9 @@
set -eu
-exec emacs --batch --eval '(progn
+: ${EMACS:=emacs}
+
+exec ${EMACS} --batch --eval '(progn
(byte-compile-file "paredit.el" t)
(byte-compile-file "test.el" t)
)'