From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Bug, probably related to Custom Themes. Date: Tue, 20 Dec 2005 20:54:45 -0600 (CST) Message-ID: <200512210254.jBL2sj814876@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1135133991 7650 80.91.229.2 (21 Dec 2005 02:59:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 21 Dec 2005 02:59:51 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 21 03:59:46 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EouAE-0003TQ-Rj for ged-emacs-devel@m.gmane.org; Wed, 21 Dec 2005 03:57:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EouB9-0007B4-S6 for ged-emacs-devel@m.gmane.org; Tue, 20 Dec 2005 21:58:11 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EouAk-00077Y-Gz for emacs-devel@gnu.org; Tue, 20 Dec 2005 21:57:46 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EouAh-00076M-Qw for emacs-devel@gnu.org; Tue, 20 Dec 2005 21:57:45 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EouAh-00076E-8O for emacs-devel@gnu.org; Tue, 20 Dec 2005 21:57:43 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EouDv-0002pQ-5a for emacs-devel@gnu.org; Tue, 20 Dec 2005 22:01:03 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.13.3+Sun/8.13.3) with ESMTP id jBL2ucUF003100 for ; Tue, 20 Dec 2005 20:56:39 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id jBL2sj814876; Tue, 20 Dec 2005 20:54:45 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.1 (manatee.dms.auburn.edu [131.204.53.104]); Tue, 20 Dec 2005 20:56:39 -0600 (CST) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:48136 Archived-At: The following bug is a regression. It does not occur in Emacs 21.3. I can not describe this using `emacs -q', since it involves saving in your init file. Do `M-x customize-group RET initialization'. I assume that `inhibit-splash-screen' is at its standard setting (nil). Toggle. Save for future sessions. Erase Customization. Result: (custom-reset-variables '(inhibit-splash-screen nil)) is written into one's Custom file, just before the custom-set-variables form. First of all, I do not know what those lines are trying to accomplish, but what we just did is supposed to be a no-op. Therefore if that code does _anything_, it is a bug. If it does nothing, why is it there? Worse to come. I assume that `inhibit-default-init' is at its standard setting (nil). Toggle. Save for future sessions. Erase Customization. Now the above lines are gone and replaced with a bunch of whitespace and then: (custom-reset-variables '(inhibit-default-init nil)) As we do similar stuff for other options we always keep that `custom-reset-variables' for the last one with the amount of leading whitespace going to infinity. Exactly the same stuff happens for faces. What is going on here? Sincerely, Luc.