summaryrefslogtreecommitdiff
path: root/lisp/skeleton.el
diff options
context:
space:
mode:
authorStephen Berman <stephen.berman@gmx.net>2020-10-26 22:21:07 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2020-10-26 22:21:21 +0100
commite7009a6dc2643125036154313924fd72c3d9847a (patch)
treeee7b528ebd80c2a15a011e052e73b3dbee7d4642 /lisp/skeleton.el
parentc7a3bd9b56912be30adaaef75f10e369e6c62886 (diff)
downloademacs-e7009a6dc2643125036154313924fd72c3d9847a.tar.gz
Fix an unbound variable in html skeletons
* lisp/skeleton.el (skeleton-internal-list): Fix an unbound variable in html skeletons (bug#44157).
Diffstat (limited to 'lisp/skeleton.el')
-rw-r--r--lisp/skeleton.el3
1 files changed, 2 insertions, 1 deletions
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)))))