(scroll-bar, border, cursor, mouse): Avoid nil spec in defface.
This commit is contained in:
parent
a9b2b70fe2
commit
d390b4d26f
1 changed files with 4 additions and 4 deletions
|
|
@ -2143,19 +2143,19 @@ used to display the prompt text."
|
|||
:group 'frames
|
||||
:group 'basic-faces)
|
||||
|
||||
(defface scroll-bar '()
|
||||
(defface scroll-bar '((t nil))
|
||||
"Basic face for the scroll bar colors under X."
|
||||
:version "21.1"
|
||||
:group 'frames
|
||||
:group 'basic-faces)
|
||||
|
||||
(defface border '()
|
||||
(defface border '((t nil))
|
||||
"Basic face for the frame border under X."
|
||||
:version "21.1"
|
||||
:group 'frames
|
||||
:group 'basic-faces)
|
||||
|
||||
(defface cursor '()
|
||||
(defface cursor '((t nil))
|
||||
"Basic face for the cursor color under X.
|
||||
Note: Other faces cannot inherit from the cursor face."
|
||||
:version "21.1"
|
||||
|
|
@ -2164,7 +2164,7 @@ Note: Other faces cannot inherit from the cursor face."
|
|||
|
||||
(put 'cursor 'face-no-inherit t)
|
||||
|
||||
(defface mouse '()
|
||||
(defface mouse '((t nil))
|
||||
"Basic face for the mouse color under X."
|
||||
:version "21.1"
|
||||
:group 'mouse
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue