comparison lispref/display.texi @ 77026:f9914fb8f8fa

(Defining Faces): Fix example.
author Richard M. Stallman <rms@gnu.org>
date Sat, 07 Apr 2007 16:16:54 +0000
parents 601da3d38bfc
children 4d7a5d9bbe76 4ef881a120fe
comparison
equal deleted inserted replaced
77025:76a4a875ce2c 77026:f9914fb8f8fa
1831 1831
1832 Here's how the standard face @code{region} is defined: 1832 Here's how the standard face @code{region} is defined:
1833 1833
1834 @example 1834 @example
1835 @group 1835 @group
1836 (defface region
1836 '((((class color) (min-colors 88) (background dark)) 1837 '((((class color) (min-colors 88) (background dark))
1837 :background "blue3") 1838 :background "blue3")
1838 @end group 1839 @end group
1839 (((class color) (min-colors 88) (background light)) 1840 (((class color) (min-colors 88) (background light))
1840 :background "lightgoldenrod2") 1841 :background "lightgoldenrod2")