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: :format strings in Custom ending in %h Date: Wed, 20 Aug 2003 20:54:19 -0500 (CDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200308210154.h7L1sJc21082@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1061438007 8492 80.91.224.253 (21 Aug 2003 03:53:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 21 Aug 2003 03:53:27 +0000 (UTC) Cc: Per Abrahamsen Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Aug 21 05:53:26 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19pgVq-0008Ac-00 for ; Thu, 21 Aug 2003 05:53:26 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19pgZO-0006bv-00 for ; Thu, 21 Aug 2003 05:57:06 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19pgRj-0003w8-Sv for emacs-devel@quimby.gnus.org; Wed, 20 Aug 2003 23:49:11 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19peo8-0008Rb-Cd for emacs-devel@gnu.org; Wed, 20 Aug 2003 22:04:12 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19pei5-0006cj-09 for emacs-devel@gnu.org; Wed, 20 Aug 2003 21:58:28 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.20) id 19pegh-00067r-2q for emacs-devel@gnu.org; Wed, 20 Aug 2003 21:56:31 -0400 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.9/8.12.9) with ESMTP id h7L1uReQ008494; Wed, 20 Aug 2003 20:56:27 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.6+Sun/8.11.6) id h7L1sJc21082; Wed, 20 Aug 2003 20:54:19 -0500 (CDT) 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.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:16032 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:16032 Sorry, my original file had an inconsistency with the defgroup and the :group. The bug is real however and stays with the following corrected file. Only difference: :group 'nifty-group gets replaced with: :group 'nifty ===File ~/customdoc.el====================================== (defgroup nifty nil "Single item group" :group 'convenience) (defcustom nifty-var nil "*Nifty doc string." :group 'nifty :type '(choice (const :tag "True" :format "%t\n%h" :doc "True stuff. Second line of true stuff." t) (other :tag "False" :format "%t\n%h" :doc "Falsehoods. Second line of falsehoods" nil))) ============================================================