From 268e15ea8d94d4e258d576408b6026bbc5e1fda3 Mon Sep 17 00:00:00 2001 From: Gregory Heytings Date: Thu, 25 Mar 2021 15:51:05 +0000 Subject: [PATCH 2/2] * lisp/htmlfontify.el (hfy-invisible): Return a new list at each invocation (bug#47391) --- lisp/htmlfontify.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index bfbe0ee165..cd7df5dfdf 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el @@ -822,7 +822,7 @@ VAL is ignored." "This text should be invisible. Do something in CSS to make that happen. VAL is ignored here." - '(("display" . "none"))) + (list '("display" . "none"))) (defun hfy-combined-face-spec (face) "Return a `defface' style alist of possible specifications for FACE. -- 2.30.2