1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

Minor fix for htmlfontify.el (Bug#6239).

* htmlfontify.el (hfy-face-attr-for-class): Use `append' instead
of `nconc' (Bug#6239).
This commit is contained in:
Chong Yidong 2010-06-27 14:24:42 -04:00
parent 3726248fdc
commit b7d4de5185
2 changed files with 6 additions and 1 deletions

View File

@ -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)

View File

@ -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: