emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master e7009a6: Fix an unbound variable in html skeletons


From: Lars Ingebrigtsen
Subject: master e7009a6: Fix an unbound variable in html skeletons
Date: Mon, 26 Oct 2020 17:21:26 -0400 (EDT)

branch: master
commit e7009a6dc2643125036154313924fd72c3d9847a
Author: Stephen Berman <stephen.berman@gmx.net>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix an unbound variable in html skeletons
    
    * lisp/skeleton.el (skeleton-internal-list): Fix an unbound
    variable in html skeletons (bug#44157).
---
 lisp/skeleton.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/skeleton.el b/lisp/skeleton.el
index ea4e5db..6e2c10d 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)))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]