emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99902: Minor fix for htmlfontify.


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99902: Minor fix for htmlfontify.el (Bug#6239).
Date: Sun, 27 Jun 2010 14:24:42 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99902
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Sun 2010-06-27 14:24:42 -0400
message:
  Minor fix for htmlfontify.el (Bug#6239).
  * htmlfontify.el (hfy-face-attr-for-class): Use `append' instead
  of `nconc' (Bug#6239).
modified:
  lisp/ChangeLog
  lisp/htmlfontify.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-06-27 18:03:26 +0000
+++ b/lisp/ChangeLog    2010-06-27 18:24:42 +0000
@@ -1,3 +1,8 @@
+2010-06-27  Masatake YAMATO  <address@hidden>
+
+       * htmlfontify.el (hfy-face-attr-for-class): Use `append' instead
+       of `nconc' (Bug#6239).
+
 2010-06-27  Christoph  <address@hidden>  (tiny change)
 
        * bookmark.el (bookmark-bmenu-2-window)

=== modified file 'lisp/htmlfontify.el'
--- a/lisp/htmlfontify.el       2010-05-27 15:25:58 +0000
+++ b/lisp/htmlfontify.el       2010-06-27 18:24:42 +0000
@@ -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:


reply via email to

[Prev in Thread] Current Thread [Next in Thread]