From b1362dba406a4425f4bffc248d5d2905dcf81563 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Fri, 29 May 2020 06:09:58 +0000 Subject: Work around new quirk in emacs --eval. Apparently this can't begin/end with a line break, so add a spurious (progn ...) around it. --- genhtml.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'genhtml.sh') 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")) -' +)' -- cgit v1.2.1