From: Stephen Berman Date: Mon, 26 Oct 2020 21:21:07 +0000 (+0100) Subject: Fix an unbound variable in html skeletons X-Git-Tag: emacs-28.0.90~5412 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e7009a6dc2643125036154313924fd72c3d9847a;p=emacs.git Fix an unbound variable in html skeletons * lisp/skeleton.el (skeleton-internal-list): Fix an unbound variable in html skeletons (bug#44157). --- 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)))))