diff options
| author | Glenn Morris | 2013-08-31 18:29:50 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-08-31 18:29:50 -0700 |
| commit | e73c3a0d89ceaaa07efabd2392e3732a2935a571 (patch) | |
| tree | 061ce4ec25ffd8486099e140ead285bcf16762dd | |
| parent | 3a2a2fada1724820e6970ea7954a05bb026c92d4 (diff) | |
| download | emacs-e73c3a0d89ceaaa07efabd2392e3732a2935a571.tar.gz emacs-e73c3a0d89ceaaa07efabd2392e3732a2935a571.zip | |
* lisp/frame.el (frame-background-mode): Doc fix.
Fixes: debbugs:15226
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/frame.el | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2e639615c25..2dda52f82ed 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-09-01 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * frame.el (frame-background-mode): Doc fix. (Bug#15226) | ||
| 4 | |||
| 1 | 2013-08-30 Glenn Morris <rgm@gnu.org> | 5 | 2013-08-30 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-recompile-directory): | 7 | * emacs-lisp/bytecomp.el (byte-recompile-directory): |
diff --git a/lisp/frame.el b/lisp/frame.el index 79394bd305b..66f6b910940 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -872,8 +872,10 @@ If there is no frame by that name, signal an error." | |||
| 872 | "The brightness of the background. | 872 | "The brightness of the background. |
| 873 | Set this to the symbol `dark' if your background color is dark, | 873 | Set this to the symbol `dark' if your background color is dark, |
| 874 | `light' if your background is light, or nil (automatic by default) | 874 | `light' if your background is light, or nil (automatic by default) |
| 875 | if you want Emacs to examine the brightness for you. Don't set this | 875 | if you want Emacs to examine the brightness for you. |
| 876 | variable with `setq'; this won't have the expected effect." | 876 | |
| 877 | If you change this without using customize after Emacs has started, | ||
| 878 | you should use `frame-set-background-mode' to update existing frames." | ||
| 877 | :group 'faces | 879 | :group 'faces |
| 878 | :set #'(lambda (var value) | 880 | :set #'(lambda (var value) |
| 879 | (set-default var value) | 881 | (set-default var value) |