diff options
| -rw-r--r-- | lisp/faces.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 58b984ce876..2e3529fabf3 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1432,6 +1432,10 @@ Set this to the symbol dark if your background color is dark, light if | |||
| 1432 | your background is light, or nil (default) if you want Emacs to | 1432 | your background is light, or nil (default) if you want Emacs to |
| 1433 | examine the brightness for you." | 1433 | examine the brightness for you." |
| 1434 | :group 'faces | 1434 | :group 'faces |
| 1435 | :set #'(lambda (var value) | ||
| 1436 | (set var value) | ||
| 1437 | (mapcar 'frame-set-background-mode (frame-list))) | ||
| 1438 | :initialize 'custom-initialize-changed | ||
| 1435 | :type '(choice (choice-item dark) | 1439 | :type '(choice (choice-item dark) |
| 1436 | (choice-item light) | 1440 | (choice-item light) |
| 1437 | (choice-item :tag "default" nil))) | 1441 | (choice-item :tag "default" nil))) |