From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: customize-style Date: Fri, 21 Mar 2003 14:06:26 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <20030317152226.E536@WINPC174> <200303171543.h2HFh30m013114@rum.cs.yale.edu> <87k7exy1q8.fsf@gnu.org> <87isufm746.fsf@gnu.org> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1048274274 15985 80.91.224.249 (21 Mar 2003 19:17:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 21 Mar 2003 19:17:54 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Mar 21 20:17:53 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18wS1Z-00049X-00 for ; Fri, 21 Mar 2003 20:17:53 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18wS3Q-0003n8-00 for ; Fri, 21 Mar 2003 20:19:48 +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 18wS1B-0007xS-03 for emacs-devel@quimby.gnus.org; Fri, 21 Mar 2003 14:17:29 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18wRyb-0006h8-00 for emacs-devel@gnu.org; Fri, 21 Mar 2003 14:14:49 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18wRy8-0005qw-00 for emacs-devel@gnu.org; Fri, 21 Mar 2003 14:14:21 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.10.13) id 18wRqb-0001gi-00 for emacs-devel@gnu.org; Fri, 21 Mar 2003 14:06:33 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 18wRqU-0005Cg-00; Fri, 21 Mar 2003 14:06:26 -0500 Original-To: Alex Schroeder In-reply-to: <87isufm746.fsf@gnu.org> (message from Alex Schroeder on Wed, 19 Mar 2003 21:30:49 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:12517 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:12517 ** custom themes collect a number of variable and face settings for sharing You can store a collection of variables and faces with their current definitions in theme files. The function custom-theme-create queries you for the name of the theme, a list of variables, and a list of faces, and writes the theme file for you. In order to use such a theme, put the file in your load-path, and use (require-theme 'foo) where foo is the name of the theme (and "foo.el" is the name of the file). That is good. Please install it.