From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Julianne Newsgroups: gmane.emacs.help Subject: initial-frame-alist Date: Sat, 26 Dec 2009 09:15:59 -0600 Organization: Aioe.org NNTP Server Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1261845090 15235 80.91.229.12 (26 Dec 2009 16:31:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 26 Dec 2009 16:31:30 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Dec 26 17:31:23 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1NOZY2-0002fT-PL for geh-help-gnu-emacs@m.gmane.org; Sat, 26 Dec 2009 17:31:23 +0100 Original-Received: from localhost ([127.0.0.1]:60579 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NOZY3-0008QI-22 for geh-help-gnu-emacs@m.gmane.org; Sat, 26 Dec 2009 11:31:23 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!goblin3!goblin.stu.neva.ru!news.mb-net.net!open-news-network.org!aioe.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 30 Original-NNTP-Posting-Host: 1uVT78Xv+9ABcIKAqhH5AQ.user.speranza.aioe.org Original-X-Complaints-To: abuse@aioe.org X-Notice: Filtered by postfilter v. 0.8.0 Cancel-Lock: sha1:Z3Gi+fVTuB/7uBWrlA8cBSejl+U= User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.1.5) Gecko/20091204 Thunderbird/3.0 Original-Xref: news.stanford.edu gnu.emacs.help:175803 X-Mailman-Approved-At: Sat, 26 Dec 2009 11:27:43 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:70878 Archived-At: I have compiled emacs-23.1 from ftp.gnu.org on both Fedora 7 and Fedora 12. In the .emacs file, I try to set a different background color for the initial frame versus the default one. When emacs is started in either version, the initial frame geometry is as specified, but the color is that of the default frame. Any new frames created follow the default list. This the snippet from the .emacs file: ;; Setup the default behavior of and display frame created (setq default-frame-alist '((width . 80)(height . 50) (top . 15) (left . 560) (background-color . "Yellow1") (foreground-color . "Black") (font . "-*-courier-medium-r-*-*-*-100-*-*-m-*-*-*") )) ;; Setup the initial display to be a little differnt (setq initial-frame-alist '((width . 80)(height . 50) (top . 10) (left . 15) (background-color . "DarkSeaGreen1") (foreground-color . "Black") (font . "-*-courier-medium-r-*-*-*-100-*-*-m-*-*-*") )) I have seen some discussion of this problem as far back as version 22. Has the issue been fixed?