summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor R Campbell <campbell@mumble.net>2013-06-13 20:00:52 +0000
committerTaylor R Campbell <campbell@mumble.net>2013-06-13 20:00:52 +0000
commit42a0494e860a612c1ae18a39504faf456dd787e6 (patch)
tree5dd98e4388d90701c36a50abbce569104c9bafdf
parentbe28e85c3f08ccfe64a2e9372f68d1da68734762 (diff)
Use $EMACS in genhtml.sh too.
-rw-r--r--genhtml.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/genhtml.sh b/genhtml.sh
index 6b303ac..4a1d667 100644
--- a/genhtml.sh
+++ b/genhtml.sh
@@ -2,7 +2,9 @@
set -Ceu
-exec emacs --batch --load paredit.el --eval '
+: ${EMACS:=emacs}
+
+exec ${EMACS} --batch --load paredit.el --eval '
(with-temp-buffer
(paredit-insert-html-examples)
(write-file "paredit.html"))