emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/faces.el


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/faces.el
Date: Tue, 21 Jun 2005 11:59:13 -0400

Index: emacs/lisp/faces.el
diff -c emacs/lisp/faces.el:1.319 emacs/lisp/faces.el:1.320
*** emacs/lisp/faces.el:1.319   Mon Jun 20 10:45:28 2005
--- emacs/lisp/faces.el Tue Jun 21 15:59:12 2005
***************
*** 1477,1483 ****
  (defsubst face-user-default-spec (face)
    "Return the user's customized face-spec for FACE, or the default if none.
  If there is neither a user setting nor a default for FACE, return nil."
!   (or (get face 'saved-face)
        (face-default-spec face)))
  
  
--- 1477,1484 ----
  (defsubst face-user-default-spec (face)
    "Return the user's customized face-spec for FACE, or the default if none.
  If there is neither a user setting nor a default for FACE, return nil."
!   (or (get face 'customized-face)
!       (get face 'saved-face)
        (face-default-spec face)))
  
  
***************
*** 1549,1557 ****
  
  (defcustom frame-background-mode nil
    "*The brightness of the background.
! Set this to the symbol `dark' if your background color is dark, `light' if
! your background is light, or nil (default) if you want Emacs to
! examine the brightness for you.  Don't set this variable with `setq';
  this won't have the expected effect."
    :group 'faces
    :set #'(lambda (var value)
--- 1550,1558 ----
  
  (defcustom frame-background-mode nil
    "*The brightness of the background.
! Set this to the symbol `dark' if your background color is dark,
! `light' if your background is light, or nil (default) if you want Emacs
! to examine the brightness for you.  Don't set this variable with `setq';
  this won't have the expected effect."
    :group 'faces
    :set #'(lambda (var value)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]