Now the `.xinitrc' Emacs has all of its frames with black backgrounds
and other ancillary Emacsen have all of their frames with blue
backgrounds. This seems right and useful.
(background-color . "black")
(foreground-color . "white"))
(nil (menu-bar-lines . 0))))
(background-color . "black")
(foreground-color . "white"))
(nil (menu-bar-lines . 0))))
+(let ((backg (frame-parameter nil 'background-color)))
+ (if (and backg window-system)
+ (push (cons 'background-color backg) default-frame-alist)))