+2012-07-18 Chong Yidong <cyd@gnu.org>
+
+ * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
+
2012-07-18 Masatake YAMATO <yamato@redhat.com>
* progmodes/sh-script.el (sh-imenu-generic-expression):
(display-graphic-p frame))
'(:family "default" :foundry "default" :width normal
:height 1 :weight normal :slant normal
- :foreground "unspecified-fg"
- :background "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))