From mboxrd@z Thu Jan 1 00:00:00 1970 From: Glenn Morris Subject: bug#16270: Incorrect custom types Date: Fri, 27 Dec 2013 20:38:01 -0500 Message-ID: <36ppohbvra.fsf@fencepost.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54607) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vwirw-0005gD-MU for emacs-orgmode@gnu.org; Fri, 27 Dec 2013 20:39:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vwirv-0003p8-Iy for emacs-orgmode@gnu.org; Fri, 27 Dec 2013 20:39:12 -0500 Received: from debbugs.gnu.org ([140.186.70.43]:33406) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vwirv-0003p4-F2 for emacs-orgmode@gnu.org; Fri, 27 Dec 2013 20:39:11 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1Vwiru-0005Eb-GX for emacs-orgmode@gnu.org; Fri, 27 Dec 2013 20:39:10 -0500 Sender: "Debbugs-submit" Resent-Message-ID: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: 16270@debbugs.gnu.org Package: org-mode This refers to the version of Org mode in Emacs trunk. The following variables have incorrect custom types: org-babel-latex-htlatex-packages ; prob. you want repeat, not list org-export-with-creator ; const should not be quoted org-babel-lob-files There are many other places where the argument of a const is quoted. This is probably not what you want. org-agenda.el: (choice (const :tag "Day" 'day) org-agenda.el: (const :tag "Week" 'week) org-agenda.el: (const :tag "Fortnight" 'fortnight) org-agenda.el: (const :tag "Month" 'month) org-agenda.el: (const :tag "Year" 'year) org-agenda.el: (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp)) org-agenda.el: (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp)) org-agenda.el: (const 'todo) org-agenda.el: (const :tag "any not-done state" 'todo) org-agenda.el: (const :tag "any done state" 'done) org-agenda.el: (const :tag "any state" 'any) org-agenda.el: (const 'nottodo) org-agenda.el: (const :tag "any not-done state" 'todo) org-agenda.el: (const :tag "any done state" 'done) org-agenda.el: (const :tag "any state" 'any) org-agenda.el: (const :tag "scheduled" 'scheduled) org-agenda.el: (const :tag "not scheduled" 'notscheduled) org-agenda.el: (const :tag "deadline" 'deadline) org-agenda.el: (const :tag "no deadline" 'notdeadline) org-agenda.el: (const :tag "timestamp" 'timestamp) org-agenda.el: (const :tag "no timestamp" 'nottimestamp)))))) org-agenda.el: (const :tag "Show only log items" 'only) org-agenda.el: (const :tag "Show all possible log items" 'clockcheck) org-agenda.el: (choice (const :tag "Show closed log items" 'closed) org-agenda.el: (const :tag "Show clocked log items" 'clock) org-agenda.el: (const :tag "Show all logged state changes" 'state))))) org-agenda.el: (const :tag "Always show inherited tags" 'always) org.el: (const :tag "In active region, headlines at the same level than the first one" 'start-level) org.el: (const :tag "A double click follows the link" 'double) org.el: (const :tag "Yes, including all entries" 'all-headlines) ox.el: (const :tag "Sentence as a comment" 'comment)