From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.devel Subject: Re: lispref/customize.texi checked. Date: Tue, 23 Nov 2004 08:22:55 +0200 Organization: JURTA Message-ID: <87pt25ozjv.fsf@jurta.org> References: <87hdniorvc.fsf@molpro.net> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1101191104 2655 80.91.229.6 (23 Nov 2004 06:25:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 23 Nov 2004 06:25:04 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 23 07:24:55 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CWU6h-0002St-00 for ; Tue, 23 Nov 2004 07:24:55 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CWUFm-0003v0-Ag for ged-emacs-devel@m.gmane.org; Tue, 23 Nov 2004 01:34:18 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CWUFf-0003ui-Dd for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:34:11 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CWUFe-0003u6-Ki for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:34:10 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CWUFe-0003u3-JM for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:34:10 -0500 Original-Received: from [66.33.205.9] (helo=spatula.dreamhost.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CWU6I-00009j-3O for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:24:30 -0500 Original-Received: from mail.jurta.org (80-235-40-48-dsl.mus.estpak.ee [80.235.40.48]) by spatula.dreamhost.com (Postfix) with ESMTP id 9D3C617D013; Mon, 22 Nov 2004 22:24:25 -0800 (PST) Original-To: Matt Hodges In-Reply-To: <87hdniorvc.fsf@molpro.net> (Matt Hodges's message of "Mon, 22 Nov 2004 14:55:35 +0000") User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux) 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: main.gmane.org gmane.emacs.devel:30272 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:30272 Matt Hodges writes: > Here are some fixes and suggested changes for lispref/customize.texi: Thanks for the fixes. > @example > (defcustom show-paren-mode nil > ! "Toggle Show Paren mode..." > :set (lambda (symbol value) > (show-paren-mode (or value 0))) > :initialize 'custom-initialize-default > --- 304,310 ---- > > @example > (defcustom show-paren-mode nil > ! "Non-nil if Show-Paren mode is enabled..." > :set (lambda (symbol value) > (show-paren-mode (or value 0))) > :initialize 'custom-initialize-default I think show-paren-mode should be replaced with something else. The line before this example in the manual says: Here is an example, from the library `paren.el': This is not true. defcustom of show-paren-mode was changed to define-minor-mode long ago. There are other real examples with similar defcustom that could be used instead of show-paren-mode, e.g. tooltip-mode from tooltip.el. -- Juri Linkov http://www.jurta.org/emacs/