]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix an unbound variable in html skeletons
authorStephen Berman <stephen.berman@gmx.net>
Mon, 26 Oct 2020 21:21:07 +0000 (22:21 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 26 Oct 2020 21:21:21 +0000 (22:21 +0100)
* lisp/skeleton.el (skeleton-internal-list): Fix an unbound
variable in html skeletons (bug#44157).

lisp/skeleton.el

index ea4e5dbc227ad04ff3e6511094d95f5db4f08a9b..6e2c10d97117e8bc7b8b8d413cdf41d157048f69 100644 (file)
@@ -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)))))