From e7009a6dc2643125036154313924fd72c3d9847a Mon Sep 17 00:00:00 2001 From: Stephen Berman Date: Mon, 26 Oct 2020 22:21:07 +0100 Subject: [PATCH] Fix an unbound variable in html skeletons * lisp/skeleton.el (skeleton-internal-list): Fix an unbound variable in html skeletons (bug#44157). --- lisp/skeleton.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/skeleton.el b/lisp/skeleton.el index ea4e5dbc227..6e2c10d9711 100644 --- a/lisp/skeleton.el +++ b/lisp/skeleton.el @@ -339,7 +339,8 @@ automatically, and you are prompted to fill in the variable parts."))) (dlet ((str (or str `(setq str (skeleton-read ',(car skeleton-il) - nil ,recursive))))) + nil ,recursive)))) + resume:) (when (and (eq (cadr skeleton-il) '\n) (not recursive) (save-excursion (skip-chars-backward " \t") (bolp))) (setq skeleton-il (cons nil (cons '> (cddr skeleton-il))))) -- 2.39.2