From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: unload-feature and defcustom. Date: Sun, 01 May 2005 08:06:50 -0400 Message-ID: References: <87ll71y9le.fsf@xs4all.nl> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1114949707 4344 80.91.229.2 (1 May 2005 12:15:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 1 May 2005 12:15:07 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun May 01 14:15:05 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DSDLd-0004wk-1i for ged-emacs-devel@m.gmane.org; Sun, 01 May 2005 14:14:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DSDSJ-0007nS-W5 for ged-emacs-devel@m.gmane.org; Sun, 01 May 2005 08:21:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DSDRF-0007N2-KF for emacs-devel@gnu.org; Sun, 01 May 2005 08:20:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DSDRE-0007MK-MI for emacs-devel@gnu.org; Sun, 01 May 2005 08:20:44 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DSDRE-00068U-FG for emacs-devel@gnu.org; Sun, 01 May 2005 08:20:44 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DSDI7-0008RJ-SC for emacs-devel@gnu.org; Sun, 01 May 2005 08:11:19 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DSDDm-0007E4-F7; Sun, 01 May 2005 08:06:50 -0400 Original-To: Lute Kamstra In-reply-to: <87ll71y9le.fsf@xs4all.nl> (message from Lute Kamstra on Fri, 29 Apr 2005 15:51:41 +0200) 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:36519 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36519 (require 'a) (unload-feature 'a) Now a-cus-var is not bound, but when I do M-x customize-option, I can still select (with completion) a-cus-var and that gives me this customization buffer: I think the cleaner fix is to undo more of what the defcustom did, so that the variable can't be customized. That could be fixed in unload-feature. You just need to figure out which properties ought to be removed and which should not be.