From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Apparently incorrect changes to custom-magic-alist. Date: Mon, 14 Feb 2005 18:39:28 -0600 (CST) Message-ID: <200502150039.j1F0dS005931@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1108428138 29159 80.91.229.2 (15 Feb 2005 00:42:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 15 Feb 2005 00:42:18 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 15 01:42:18 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D0qn4-0004TL-P8 for ged-emacs-devel@m.gmane.org; Tue, 15 Feb 2005 01:42:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D0r2i-0003dk-Bx for ged-emacs-devel@m.gmane.org; Mon, 14 Feb 2005 19:58:20 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D0r2V-0003dR-8l for emacs-devel@gnu.org; Mon, 14 Feb 2005 19:58:07 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D0r2U-0003cy-Cn for emacs-devel@gnu.org; Mon, 14 Feb 2005 19:58:06 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D0r2U-0003cg-7K for emacs-devel@gnu.org; Mon, 14 Feb 2005 19:58:06 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D0qmA-0002oC-1H for emacs-devel@gnu.org; Mon, 14 Feb 2005 19:41:14 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id j1F0fD9N005293 for ; Mon, 14 Feb 2005 18:41:13 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id j1F0dS005931; Mon, 14 Feb 2005 18:39:28 -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-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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:33441 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33441 I propose the changes to cus-edit.el contained in the patch below. They essentially constitute a partial revert to the previous version. Part of recent changes to custom-magic-alist are wrong. Do `emacs -q'. M-x customize-group auto-revert RET Now toggle Auto Revert Verbose to off and set for the current session. Now erase the `5' in Auto Revert Interval. Now it says: you have edited something in this group, but not set anything yet. But I _did_ set Auto Revert Verbose. I can not give an `emacs -q' example showing that the message: you have set something in this group, but not saved anything yet. suffers from the same problem (because in `emacs -q', you can not save), but in an ordinary Emacs, it may tell you that you did not save anything, whereas you saved plenty of stuff. ===File ~/cus-edit.el-diff================================== *** cus-edit.el 14 Feb 2005 15:38:32 -0600 1.212 --- cus-edit.el 14 Feb 2005 17:52:21 -0600 *************** *** 1671,1680 **** the value displayed for this %c is invalid and cannot be set.") (modified "*" custom-modified-face "\ you have edited the value as text, but you have not set the %c." "\ ! you have edited something in this group, but not set anything yet.") (set "+" custom-set-face "\ you have set this %c, but not saved it for future sessions." "\ ! you have set something in this group, but not saved anything yet.") (changed ":" custom-changed-face "\ this %c has been changed outside the customize buffer." "\ something in this group has been changed outside customize.") --- 1671,1680 ---- the value displayed for this %c is invalid and cannot be set.") (modified "*" custom-modified-face "\ you have edited the value as text, but you have not set the %c." "\ ! you have edited something in this group, but not set it.") (set "+" custom-set-face "\ you have set this %c, but not saved it for future sessions." "\ ! you have set something in this group, but not saved it.") (changed ":" custom-changed-face "\ this %c has been changed outside the customize buffer." "\ something in this group has been changed outside customize.") ============================================================