+2002-12-07 Andreas Schwab <schwab@suse.de>
+
+ * cus-edit.el (custom-face-edit-fix-value): Change :reverse-video
+ to :inverse-video.
+
2002-12-07 Markus Rost <rost@math.ohio-state.edu>
* wid-edit.el (define-widget number): Clarify doc and error
custom-face-attributes))
(defun custom-face-edit-fix-value (widget value)
- "Ignoring WIDGET, convert :bold and :italic in VALUE to new form."
+ "Ignoring WIDGET, convert :bold and :italic in VALUE to new form.
+Also change :reverse-video to :inverse-video."
(if (listp value)
(let (result)
(while value
((eq key :bold)
(push :weight result)
(push (if val 'bold 'normal) result))
+ ((eq key :reverse-video)
+ (push :inverse-video result)
+ (push val result))
(t
(push key result)
(push val result))))