]> git.eshelyaron.com Git - emacs.git/commitdiff
(scroll-bar, border, cursor, mouse): Avoid nil spec in defface.
authorLuc Teirlinck <teirllm@auburn.edu>
Fri, 21 Apr 2006 23:36:59 +0000 (23:36 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Fri, 21 Apr 2006 23:36:59 +0000 (23:36 +0000)
lisp/faces.el

index 92a94192c36c67a550c9f340b29bc7403e51e3e8..14c57ed6e34273f1a0933542728eea4e33d871db 100644 (file)
@@ -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