diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-06-27 14:24:42 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-06-27 14:24:42 -0400 |
commit | b7d4de51858a4e320aa3c6957f3a7651251113d5 (patch) | |
tree | d80b68428a6d7a902887885a2255b81fe95ecdc7 /lisp/htmlfontify.el | |
parent | 3726248fdce1550b9dfa9a2836f5d419a0259461 (diff) | |
download | emacs-b7d4de51858a4e320aa3c6957f3a7651251113d5.tar.gz |
Minor fix for htmlfontify.el (Bug#6239).
* htmlfontify.el (hfy-face-attr-for-class): Use `append' instead
of `nconc' (Bug#6239).
Diffstat (limited to 'lisp/htmlfontify.el')
-rw-r--r-- | lisp/htmlfontify.el | 2 |
1 files changed, 1 insertions, 1 deletions
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: |