summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor R Campbell <campbell+paredit@mumble.net>2020-05-29 06:09:58 +0000
committerTaylor R Campbell <campbell+paredit@mumble.net>2020-05-29 06:09:58 +0000
commitb1362dba406a4425f4bffc248d5d2905dcf81563 (patch)
tree68b3fbad5db46b05dacc36333af10e019f1f2934
parent92aaa712be6185a105638c551f46befaf96c446f (diff)
Work around new quirk in emacs --eval.
Apparently this can't begin/end with a line break, so add a spurious (progn ...) around it.
-rw-r--r--genhtml.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/genhtml.sh b/genhtml.sh
index 4a1d667..b7966e0 100644
--- a/genhtml.sh
+++ b/genhtml.sh
@@ -4,8 +4,8 @@ set -Ceu
: ${EMACS:=emacs}
-exec ${EMACS} --batch --load paredit.el --eval '
+exec ${EMACS} --batch --load paredit.el --eval '(progn
(with-temp-buffer
(paredit-insert-html-examples)
(write-file "paredit.html"))
-'
+)'