projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7a3bd9
)
Fix an unbound variable in html skeletons
author
Stephen Berman
<stephen.berman@gmx.net>
Mon, 26 Oct 2020 21:21:07 +0000
(22:21 +0100)
committer
Lars 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
patch
|
blob
|
history
diff --git
a/lisp/skeleton.el
b/lisp/skeleton.el
index ea4e5dbc227ad04ff3e6511094d95f5db4f08a9b..6e2c10d97117e8bc7b8b8d413cdf41d157048f69 100644
(file)
--- 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)))))