From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Olve Newsgroups: gmane.emacs.help Subject: Re: Whats wrong with this defcustom? Date: Sat, 26 Jul 2014 14:58:47 +0200 Organization: Guest of ProXad - France Message-ID: <53d3a64c$0$2939$426a34cc@news.free.fr> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1406379632 30059 80.91.229.3 (26 Jul 2014 13:00:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 26 Jul 2014 13:00:32 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jul 26 15:00:26 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XB1aK-00060N-PW for geh-help-gnu-emacs@m.gmane.org; Sat, 26 Jul 2014 15:00:24 +0200 Original-Received: from localhost ([::1]:58915 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XB1aK-0000dS-ET for geh-help-gnu-emacs@m.gmane.org; Sat, 26 Jul 2014 09:00:24 -0400 Original-Path: usenet.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!proxad.net!feeder1-2.proxad.net!cleanfeed3-a.proxad.net!nnrp2-1.free.fr!not-for-mail User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 Original-Newsgroups: gnu.emacs.help In-Reply-To: Original-Lines: 17 Original-NNTP-Posting-Date: 26 Jul 2014 14:59:56 CEST Original-NNTP-Posting-Host: 82.233.191.86 Original-X-Trace: 1406379596 news-4.free.fr 2939 82.233.191.86:46734 Original-X-Complaints-To: abuse@proxad.net Original-Xref: usenet.stanford.edu gnu.emacs.help:206677 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:98951 Archived-At: Le 26/07/2014 12:55, Thorsten Jolitz a écrit : > (defcustom org-x-style 'notes > | "Possible styles for diagrams." > | :group 'org-x > | :type '(choice (const :tag "Sync-bars" 'sync-bars) > | (const :tag "Partitions" 'partitions) > | (const :tag "Notes" 'notes))) (defcustom org-x-style 'notes "Possible styles for diagrams." :group 'org-x :type '(choice (const :tag "Sync-bars" sync-bars) (const :tag "Partitions" partitions) (const :tag "Notes" notes))) The last symbols in const should not be quoted (or double-quote the initial value !) A.O.