branch: elpa/paredit
commit b1362dba406a4425f4bffc248d5d2905dcf81563
Author: Taylor R Campbell <[email protected]>
Commit: Taylor R Campbell <[email protected]>

    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(-)

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"))
-'
+)'

Reply via email to