changeset 109282:3c15269db196

Minor fix for htmlfontify.el (Bug#6239). * htmlfontify.el (hfy-face-attr-for-class): Use `append' instead of `nconc' (Bug#6239).
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 27 Jun 2010 14:24:42 -0400
parents 81cfe104e929
children 1fea8c5cd259
files lisp/ChangeLog lisp/htmlfontify.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sun Jun 27 14:03:26 2010 -0400
+++ b/lisp/ChangeLog	Sun Jun 27 14:24:42 2010 -0400
@@ -1,3 +1,8 @@
+2010-06-27  Masatake YAMATO  <yamato@redhat.com>
+
+	* htmlfontify.el (hfy-face-attr-for-class): Use `append' instead
+	of `nconc' (Bug#6239).
+
 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
 
 	* bookmark.el (bookmark-bmenu-2-window)
--- a/lisp/htmlfontify.el	Sun Jun 27 14:03:26 2010 -0400
+++ b/lisp/htmlfontify.el	Sun Jun 27 14:24:42 2010 -0400
@@ -959,7 +959,7 @@
                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: