From b7d4de51858a4e320aa3c6957f3a7651251113d5 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 27 Jun 2010 14:24:42 -0400 Subject: [PATCH] Minor fix for htmlfontify.el (Bug#6239). * htmlfontify.el (hfy-face-attr-for-class): Use `append' instead of `nconc' (Bug#6239). --- lisp/ChangeLog | 5 +++++ lisp/htmlfontify.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8fcbf15adab..83388723a23 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-06-27 Masatake YAMATO + + * htmlfontify.el (hfy-face-attr-for-class): Use `append' instead + of `nconc' (Bug#6239). + 2010-06-27 Christoph (tiny change) * bookmark.el (bookmark-bmenu-2-window) diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index b363156c311..f7a5382e6b8 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el @@ -959,7 +959,7 @@ See also `hfy-display-class' for details of valid values for CLASS." new-spec))))) (if (or (memq :inherit face-spec) (eq 'default face)) face-spec - (nconc face-spec (list :inherit 'default))) )) + (append face-spec (list :inherit 'default))))) ;; construct an assoc of (css-tag-name . css-tag-value) pairs ;; from a face or assoc of face attributes: -- 2.39.2