From mboxrd@z Thu Jan  1 00:00:00 1970
Path: main.gmane.org!not-for-mail
From: Ismael Valladolid Torres <ISMAEVAL@terra.es>
Newsgroups: gmane.emacs.help
Subject: Re: default-frame-alist in console mode
Date: Sun, 23 Jan 2005 23:40:46 +0100
Message-ID: <20050123224046.GE5985@buddha>
References: <1106516441.6528.8.camel@c83-250-201-122.bredband.comhem.se>
NNTP-Posting-Host: deer.gmane.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Trace: sea.gmane.org 1106524778 30288 80.91.229.6 (23 Jan 2005 23:59:38 GMT)
X-Complaints-To: usenet@sea.gmane.org
NNTP-Posting-Date: Sun, 23 Jan 2005 23:59:38 +0000 (UTC)
Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 24 00:59:32 2005
Return-path: <help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org>
Original-Received: from lists.gnu.org ([199.232.76.165])
	by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian))
	id 1Csrdj-0000W8-00
	for <geh-help-gnu-emacs@m.gmane.org>; Mon, 24 Jan 2005 00:59:31 +0100
Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org)
	by lists.gnu.org with esmtp (Exim 4.43)
	id 1Csrpu-00059E-Pr
	for geh-help-gnu-emacs@m.gmane.org; Sun, 23 Jan 2005 19:12:06 -0500
Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43)
	id 1CsrlQ-00030v-D7
	for help-gnu-emacs@gnu.org; Sun, 23 Jan 2005 19:07:28 -0500
Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43)
	id 1Csriz-0002H2-Lj
	for help-gnu-emacs@gnu.org; Sun, 23 Jan 2005 19:05:02 -0500
Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org)
	by lists.gnu.org with esmtp (Exim 4.43) id 1Csriy-00020Z-Oj
	for help-gnu-emacs@gnu.org; Sun, 23 Jan 2005 19:04:56 -0500
Original-Received: from [213.4.129.135] (helo=tnetsmtp1.mail.isp)
	by monty-python.gnu.org with esmtp (Exim 4.34) id 1Csr95-0006RK-0X
	for help-gnu-emacs@gnu.org; Sun, 23 Jan 2005 18:27:51 -0500
Original-Received: from localhost.localdomain ([80.38.119.13]) by
	tnetsmtp1.mail.isp (terra.es) with ESMTP id IASKBW01.LIY for
	<help-gnu-emacs@gnu.org>; Sun, 23 Jan 2005 23:40:44 +0100 
Original-Received: from ismael by localhost.localdomain with local (Exim 4.34)
	id 1CsqPW-0001b4-T0
	for help-gnu-emacs@gnu.org; Sun, 23 Jan 2005 23:40:46 +0100
Original-To: help-gnu-emacs@gnu.org
Mail-Followup-To: help-gnu-emacs@gnu.org
Content-Disposition: inline
In-Reply-To: <1106516441.6528.8.camel@c83-250-201-122.bredband.comhem.se>
User-Agent: Mutt/1.5.6+20040907i
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 <help-gnu-emacs.gnu.org>
List-Unsubscribe: <http://lists.gnu.org/mailman/listinfo/help-gnu-emacs>,
	<mailto:help-gnu-emacs-request@gnu.org?subject=unsubscribe>
List-Archive: <http://lists.gnu.org/pipermail/help-gnu-emacs>
List-Post: <mailto:help-gnu-emacs@gnu.org>
List-Help: <mailto:help-gnu-emacs-request@gnu.org?subject=help>
List-Subscribe: <http://lists.gnu.org/mailman/listinfo/help-gnu-emacs>,
	<mailto:help-gnu-emacs-request@gnu.org?subject=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: main.gmane.org gmane.emacs.help:23568
X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:23568

August escribe:
> I noticed when I opened Emacs in console mode that the variable
> `default-frame-alist' from .emacs is used. Is there a way to skip this
> setting in console mode? Under X Windows I use a colored background (set
> by `default-frame-alist'), but when I start Emacs in console mode I get
> a white text on white background. Moreover, none of the settings I have
> in `default-frame-alist' makes sense in console mode.

This works for me:

(when window-system
  (setq default-frame-alist
   ...))

Cordially, Ismael