+2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
+
+ * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
+
2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
* emacs-lisp/pp.el (pp-display-expression): Select old selected
;; temacs, prior to loading frame.el.
(unless (and (fboundp 'display-graphic-p)
(display-graphic-p frame))
- '(:family "default" :foundry "default" :width normal
+ `(:family "default" :foundry "default" :width normal
:height 1 :weight normal :slant normal
- :foreground (if (frame-parameter nil 'reverse)
- "unspecified-bg"
- "unspecified-fg")
- :background (if (frame-parameter nil 'reverse)
- "unspecified-fg"
- "unspecified-bg"))))
+ :foreground ,(if (frame-parameter nil 'reverse)
+ "unspecified-bg"
+ "unspecified-fg")
+ :background ,(if (frame-parameter nil 'reverse)
+ "unspecified-fg"
+ "unspecified-bg"))))
;; For all other faces, unspecify all attributes.
(apply 'append
(mapcar (lambda (x) (list (car x) 'unspecified))