From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tjernlund Newsgroups: gmane.emacs.devel Subject: default-frame-alist vs. initial-frame-alist Date: Thu, 23 Oct 2014 21:46:27 +0200 Message-ID: <1414093587.20031.6.camel@jocke.my.home> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1414096909 12175 80.91.229.3 (23 Oct 2014 20:41:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 23 Oct 2014 20:41:49 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 23 22:41:44 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XhPCa-0005d6-2f for ged-emacs-devel@m.gmane.org; Thu, 23 Oct 2014 22:41:44 +0200 Original-Received: from localhost ([::1]:43431 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhPCZ-0005Fm-O3 for ged-emacs-devel@m.gmane.org; Thu, 23 Oct 2014 16:41:43 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:41093) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhOLH-0006Nf-W1 for emacs-devel@gnu.org; Thu, 23 Oct 2014 15:46:46 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XhOLB-00082Z-NY for emacs-devel@gnu.org; Thu, 23 Oct 2014 15:46:39 -0400 Original-Received: from mailrelay6.public.one.com ([91.198.169.200]:50280) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XhOLA-0007gT-FX for emacs-devel@gnu.org; Thu, 23 Oct 2014 15:46:33 -0400 X-HalOne-Cookie: 6930c398fe8c1871445e1af76dba8c409b03e18f DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=tjernlund.se; s=20140924; h=from:subject:date:message-id:to:mime-version:content-type: content-transfer-encoding; bh=zNsZPyS4jfufxFgD6B53XgEquLEP/W2Pd7khc7kShlI=; b=H56DzCr3VWJxXam9k9deA8pL5TfXxID+1FlUDfBGOVH3DkK3Qh1btuXshGPuyKUKTUffCzR1870fF P0EUgqhuMCtmgNMjqcGzZr0e32g79TeT5h9O6mlA7j3tJDu9SlFyknnGVIM1MsUMmGuGxc4YiAIHWG WMX2DSHcCrY9fZDg= Original-Received: from [192.168.0.57] (unknown [178.174.211.18]) by smtpfilter3.public.one.com (Halon Mail Gateway) with ESMTPSA for ; Thu, 23 Oct 2014 19:45:29 +0000 (GMT) X-Mailer: Evolution 3.10.4 X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-Received-From: 91.198.169.200 X-Mailman-Approved-At: Thu, 23 Oct 2014 16:41:29 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:175760 Archived-At: I have to set both lists below to make the change in colors effective. I think it should be enough with default-frame-alist. This is on both 24.3 and 24.4 ;; Color settings. (setq default-frame-alist '((background-color . "#333333") (foreground-color . "White") (cursor-color . "White"))) (setq initial-frame-alist default-frame-alist) Jocke