From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/62250 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.gnus.general,gmane.emacs.devel Subject: Re: defcustom :version Date: Tue, 14 Mar 2006 19:36:53 -0600 (CST) Message-ID: <200603150136.k2F1ar101049@raven.dms.auburn.edu> References: <15499.1142047137@olgas.newt.com> <200603110447.k2B4lbt10750@raven.dms.auburn.edu> <200603121454.k2CEsDf05104@raven.dms.auburn.edu> <200603140326.k2E3QFs05473@raven.dms.auburn.edu> <200603142332.k2ENW0928869@raven.dms.auburn.edu> <12521.1142381164@olgas.newt.com> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1142387204 5765 80.91.229.2 (15 Mar 2006 01:46:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 15 Mar 2006 01:46:44 +0000 (UTC) Cc: rms@gnu.org, ding@gnus.org, emacs-devel@gnu.org Original-X-From: ding-owner+m10776@lists.math.uh.edu Wed Mar 15 02:46:42 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FJL60-0003Tb-MX for ding-account@gmane.org; Wed, 15 Mar 2006 02:46:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1FJL5r-0000uN-00; Tue, 14 Mar 2006 19:46:31 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1FJL1m-0000uF-00 for ding@lists.math.uh.edu; Tue, 14 Mar 2006 19:42:18 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1FJL1k-0005rQ-Bw for ding@lists.math.uh.edu; Tue, 14 Mar 2006 19:42:18 -0600 Original-Received: from manatee.dms.auburn.edu ([131.204.53.104]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1FJL1j-0004hF-00 for ; Wed, 15 Mar 2006 02:42:15 +0100 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 k2F1gBi1001689; Tue, 14 Mar 2006 19:42:11 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id k2F1ar101049; Tue, 14 Mar 2006 19:36:53 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: wohler@newt.com In-reply-to: <12521.1142381164@olgas.newt.com> (message from Bill Wohler on Tue, 14 Mar 2006 16:06:04 -0800) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.1 (manatee.dms.auburn.edu [131.204.53.104]); Tue, 14 Mar 2006 19:42:11 -0600 (CST) X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:62250 gmane.emacs.devel:51638 Archived-At: Bill Wohler wrote: p.s. Shouldn't customize-changed-options-previous-release be 21.4, not 21.1? No, it is supposed to be the last _major_ release, which is 21.1. By the way, the prompt for customize-browse says "(default all versions)". I don't understand what that means. It tells me, Show all options that are different from any other version. But this is essentially *every* option. I think this prompt should read, (default last version). Last major release, but this is long and the prompt is already long. We could just make it (default 21.1), without hardcoding the 21.1, using the following patch, which I can install if desired. ===File ~/cus-edit-diff===================================== *** cus-edit.el 03 Mar 2006 11:17:02 -0600 1.287 --- cus-edit.el 14 Mar 2006 18:52:54 -0600 *************** *** 1092,1098 **** With argument SINCE-VERSION (a string), customize all settings that were added or redefined since that version." ! (interactive "sCustomize options changed, since version (default all versions): ") (if (equal since-version "") (setq since-version nil) (unless (condition-case nil --- 1092,1102 ---- With argument SINCE-VERSION (a string), customize all settings that were added or redefined since that version." ! (interactive ! (list ! (read-from-minibuffer ! (format "Customize options changed, since version (default %s): " ! customize-changed-options-previous-release)))) (if (equal since-version "") (setq since-version nil) (unless (condition-case nil ============================================================