From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: missing element in org-element.el Date: Fri, 19 Apr 2013 16:30:11 +0200 Message-ID: <87wqryd24s.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTCKT-0000fY-Tb for emacs-orgmode@gnu.org; Fri, 19 Apr 2013 10:30:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UTCKS-00065N-NC for emacs-orgmode@gnu.org; Fri, 19 Apr 2013 10:30:21 -0400 Received: from plane.gmane.org ([80.91.229.3]:35875) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTCKS-00065C-GY for emacs-orgmode@gnu.org; Fri, 19 Apr 2013 10:30:20 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UTCKP-0003On-V4 for emacs-orgmode@gnu.org; Fri, 19 Apr 2013 16:30:17 +0200 Received: from g231107063.adsl.alicedsl.de ([92.231.107.63]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Apr 2013 16:30:17 +0200 Received: from tjolitz by g231107063.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Apr 2013 16:30:17 +0200 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: emacs-orgmode@gnu.org Hi List, comparing this ,---------------------------------------------------------------------------- | (defconst org-element-all-elements | '(babel-call center-block clock comment comment-block diary-sexp drawer | dynamic-block example-block export-block fixed-width | footnote-definition headline horizontal-rule inlinetask item | keyword latex-environment node-property paragraph plain-list | planning property-drawer quote-block quote-section section | special-block src-block table table-row verse-block) | "Complete list of element types.") `---------------------------------------------------------------------------- to this ,------------------------------------------------------------------ | (defconst org-element-secondary-value-alist | '((headline . :title) | (inlinetask . :title) | (item . :tag) | (footnote-reference . :inline-definition)) | "Alist between element types and location of secondary value.") `------------------------------------------------------------------ reveals that 'footnote-reference' is missing in the first list. -- cheers, Thorsten