branch: master
commit c59bc94db7a20be9f4bb68452ae65257c3b0588f
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
tiny.el (tiny-extract-sexps): add missing let binding
---
tiny.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tiny.el b/tiny.el
index f9f1067..0325c82 100644
--- a/tiny.el
+++ b/tiny.el
@@ -213,7 +213,7 @@ Each element of FORMS corresponds to a `format'-style %
form in STR.
* %(sexp) is replaced with %s in STR, and put in FORMS
* the rest of forms are untouched in STR, and put as nil in FORMS"
(let ((start 0)
- forms beg)
+ forms beg fexp)
(condition-case nil
(while (setq beg (string-match "%" str start))
(setq start (1+ beg))