branch: elpa/buttercup
commit 695e444a482fe56f20c723dcf58888d8cecc2940
Author: Jorgen Schaefer <[email protected]>
Commit: Jorgen Schaefer <[email protected]>
buttercup-markdown-runner: Use setq, not setq-local.
setq-local does not exist in Emacs < 24.3
---
buttercup.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buttercup.el b/buttercup.el
index 6eb3aa8..7628897 100644
--- a/buttercup.el
+++ b/buttercup.el
@@ -353,7 +353,7 @@ form.")
(with-current-buffer lisp-buffer
(insert code))))))
(with-current-buffer lisp-buffer
- (setq-local lexical-binding t)
+ (setq lexical-binding t)
(eval-region (point-min)
(point-max)))
(buttercup-run)))