From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thomas Gehrlein Newsgroups: gmane.emacs.help Subject: Re: color-theme 6.5.0 Date: 09 Jan 2003 16:47:10 +0100 Organization: T-Online Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <877kdmntwp.fsf@emacswiki.org> <87r8bmtnfs.fsf@computer.localdomain> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1042132406 18606 80.91.224.249 (9 Jan 2003 17:13:26 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 9 Jan 2003 17:13:26 +0000 (UTC) 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 18WgFA-0004pp-00 for ; Thu, 09 Jan 2003 18:13:24 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18Wf6l-0000CT-07 for gnu-help-gnu-emacs@m.gmane.org; Thu, 09 Jan 2003 11:00:39 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!canoe.uoregon.edu!hammer.uoregon.edu!news.nl.linux.org!humbolt.nl.linux.org!zen.net.uk!newsfeed.hostname.nl!newsfeed01.sul.t-online.de!newsmm00.sul.t-online.com!t-online.de!news.t-online.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 19 Original-X-Trace: news.t-online.com 1042127798 07 30672 qTVFEQfXSKHcc2 030109 15:56:39 Original-X-Complaints-To: abuse@t-online.com X-Sender: 510070249694-0001@t-dialin.net User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 Original-Xref: shelby.stanford.edu gnu.emacs.help:108770 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:5298 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:5298 Chris McMahan writes: > (require 'color-theme) > > (if (not window-system) > nil > (progn > (add-hook 'after-init-hook > (lambda () > (color-theme-dark-blue2))))) (require 'color-theme) (when window-system (add-hook 'after-init-hook (lambda () (color-theme-dark-blue2)))) Thomas