diff options
author | Stephen Berman <stephen.berman@gmx.net> | 2020-10-26 22:21:07 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-10-26 22:21:21 +0100 |
commit | e7009a6dc2643125036154313924fd72c3d9847a (patch) | |
tree | ee7b528ebd80c2a15a011e052e73b3dbee7d4642 /lisp/skeleton.el | |
parent | c7a3bd9b56912be30adaaef75f10e369e6c62886 (diff) | |
download | emacs-e7009a6dc2643125036154313924fd72c3d9847a.tar.gz emacs-e7009a6dc2643125036154313924fd72c3d9847a.tar.bz2 emacs-e7009a6dc2643125036154313924fd72c3d9847a.zip |
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.el | 3 |
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))))) |