From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.help,gmane.emacs.devel Subject: Re: How to make reverse video the default behavior under Windows Date: Wed, 02 Oct 2002 08:27:45 +0200 Sender: help-gnu-emacs-admin@gnu.org Message-ID: <20021002082043.9212.LEKTU@terra.es> References: <762A7BB74D6AD51195EF00B0D0AA16602C37F3@STPETE> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1033540075 21652 127.0.0.1 (2 Oct 2002 06:27:55 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 2 Oct 2002 06:27:55 +0000 (UTC) Cc: "GNU Emacs Devel (E-mail)" , "GNU Emacs Help (E-mail)" Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17wczC-0005d6-00 for ; Wed, 02 Oct 2002 08:27:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17wczN-0001rV-00; Wed, 02 Oct 2002 02:28:05 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17wczG-0001pj-00 for help-gnu-emacs@gnu.org; Wed, 02 Oct 2002 02:27:58 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17wczE-0001pB-00 for help-gnu-emacs@gnu.org; Wed, 02 Oct 2002 02:27:57 -0400 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by monty-python.gnu.org with esmtp (Exim 4.10) id 17wczD-0001oG-00; Wed, 02 Oct 2002 02:27:55 -0400 Original-Received: from [62.22.27.143] (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id g926RhE22169; Wed, 2 Oct 2002 08:27:44 +0200 Original-To: Ben Key In-Reply-To: <762A7BB74D6AD51195EF00B0D0AA16602C37F3@STPETE> X-Mailer: Becky! ver. 2.05.06 Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2170 gmane.emacs.devel:8323 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2170 On Tue, 1 Oct 2002 16:00:33 -0400, Ben Key wrote: > I cannot figure out how to make Emacs go into reverse-video mode by default. You can always manually set the foreground color to white (or light grey) and the background to black in the registry. In HKEY_LOCAL_MACHINE\Software\Gnu\Emacs I have values: Emacs.Background = "black" Emacs.Foreground = "light grey" and, to be on the safe side, in my .emacs I add the following entries: (background-color . "black") (foreground-color . "light grey") (background-mode . dark) to `default-frame-alist' and `initial-frame-alist'. /L/e/k/t/u