comparison lisp/faces.el @ 57105:8f14c8ea51a1

(cursor): Add face-no-inherit property. Doc fix.
author Kim F. Storm <storm@cua.dk>
date Tue, 14 Sep 2004 19:57:52 +0000
parents 084530cb1b2f
children 2015bd985187 b5dee7c1d483 566253900690
comparison
equal deleted inserted replaced
57104:27d26db0f6b1 57105:8f14c8ea51a1
1922 :group 'frames 1922 :group 'frames
1923 :group 'basic-faces) 1923 :group 'basic-faces)
1924 1924
1925 1925
1926 (defface cursor '() 1926 (defface cursor '()
1927 "Basic face for the cursor color under X." 1927 "Basic face for the cursor color under X.
1928 Note: Other faces cannot inherit from the cursor face."
1928 :version "21.1" 1929 :version "21.1"
1929 :group 'cursor 1930 :group 'cursor
1930 :group 'basic-faces) 1931 :group 'basic-faces)
1931 1932
1933 (put 'cursor 'face-no-inherit t)
1932 1934
1933 (defface mouse '() 1935 (defface mouse '()
1934 "Basic face for the mouse color under X." 1936 "Basic face for the mouse color under X."
1935 :version "21.1" 1937 :version "21.1"
1936 :group 'mouse 1938 :group 'mouse