From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Spiers Subject: BUG: defcustom org-agenda-sorting-strategy Date: Sun, 30 Dec 2007 19:35:46 +0000 Message-ID: <20071230193546.GF20947@atlantic.linksys.moosehall> Reply-To: Adam Spiers Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J93wt-0002sT-BK for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 14:35:51 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J93ws-0002rm-Bf for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 14:35:50 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J93ws-0002rg-1M for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 14:35:50 -0500 Received: from mail.beimborn.com ([70.84.38.100]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1J93wr-0006X6-MM for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 14:35:49 -0500 Received: from mail.beimborn.com (localhost.localdomain [127.0.0.1]) by mail.beimborn.com (8.12.11.20060308/8.12.8) with ESMTP id lBUJZmEM010783 for ; Sun, 30 Dec 2007 13:35:48 -0600 Received: from localhost (localhost [[UNIX: localhost]]) by mail.beimborn.com (8.12.11.20060308/8.12.11/Submit) id lBUJZlRL010776 for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 19:35:47 GMT Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode mailing list A missing comma broke this defcustom: http://www.adamspiers.org/cgi-bin/hg.cgi/org-atlantic/rev/8b97b436208c # HG changeset patch # User Adam Spiers # Date 1199042992 0 # Node ID 8b97b436208cd3b766f2323e392945984ddf0cc7 # Parent b5235d24cb622a754cef5342855c0964f997f70f fix defcustom org-agenda-sorting-strategy diff -r b5235d24cb62 -r 8b97b436208c org.el --- a/org.el Sat Dec 29 20:42:28 2007 +0000 +++ b/org.el Sun Dec 30 19:29:52 2007 +0000 @@ -2705,7 +2705,7 @@ contents, with a context symbol in the c `agenda', `todo', `tags' for the corresponding agenda views." :group 'org-agenda-sorting :type `(choice - (repeat :tag "General" org-sorting-choice) + (repeat :tag "General" ,org-sorting-choice) (list :tag "Individually" (cons (const :tag "Strategy for Weekly/Daily agenda" agenda) (repeat ,org-sorting-choice))