From: Juanma Barranquero Date: Thu, 6 Mar 2003 08:14:37 +0000 (+0000) Subject: (frame-set-background-mode): Fix reference to attribute "backgroundMode". X-Git-Tag: emacs-21.3~5 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=81be39f76610d6ee944f1c18f0e302ad3d57b917;p=emacs.git (frame-set-background-mode): Fix reference to attribute "backgroundMode". --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index af4afdd5807..d766be588a4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-03-06 Juanma Barranquero + + * faces.el (frame-set-background-mode): Fix reference to attribute + "backgroundMode". + 2003-03-05 Juanma Barranquero * startup.el (command-line-x-option-alist): Make --border-color set diff --git a/lisp/faces.el b/lisp/faces.el index b161eb75f2a..58e4c16407b 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1383,7 +1383,7 @@ Display-dependent faces are those which have different definitions according to the `background-mode' and `display-type' frame parameters." (let* ((bg-resource (and window-system - (x-get-resource ".backgroundMode" "BackgroundMode"))) + (x-get-resource "backgroundMode" "BackgroundMode"))) (bg-color (frame-parameter frame 'background-color)) (bg-mode (cond (frame-background-mode)