diff options
| author | Luc Teirlinck <teirllm@auburn.edu> | 2006-04-21 23:36:59 +0000 |
|---|---|---|
| committer | Luc Teirlinck <teirllm@auburn.edu> | 2006-04-21 23:36:59 +0000 |
| commit | d390b4d26ff2d75c920b9be16383dd393b7601e4 (patch) | |
| tree | 010411b49b6104d6433fbf30d5a3c322170afbf2 | |
| parent | a9b2b70fe2f3bb420a2b300da6daa7fcb19ee504 (diff) | |
| download | emacs-d390b4d26ff2d75c920b9be16383dd393b7601e4.tar.gz | |
(scroll-bar, border, cursor, mouse): Avoid nil spec in defface.
| -rw-r--r-- | lisp/faces.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 92a94192c36..14c57ed6e34 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -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 |
