From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Mark A. Hershberger" Subject: =?UTF-8?B?UmU6IEJ1Zzogb3gtb2R0LmVsIHNob3VsZCBzdXBwb3J0IHRleHQ6?= =?UTF-8?B?c3RhcnQtdmFsdWUgWzkuMS4xNCAoOS4xLjE0LTctZzAxYzQxOS1lbHBhcGx1?= =?UTF-8?B?cyBAIOKApi9vcmctcGx1cy1jb250cmliLTIwMTgxMDE1Lyld?= Date: Wed, 17 Oct 2018 22:23:34 -0400 Message-ID: <87r2gom1qx.fsf@everybody.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gCxyQ-0001fV-9R for emacs-orgmode@gnu.org; Wed, 17 Oct 2018 22:23:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gCxyM-0002Uu-5d for emacs-orgmode@gnu.org; Wed, 17 Oct 2018 22:23:42 -0400 Received: from nospam.nichework.com ([206.71.169.33]:35430) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gCxyL-0002QD-Tu for emacs-orgmode@gnu.org; Wed, 17 Oct 2018 22:23:38 -0400 Received: from localhost (localhost.localdmain [127.0.0.1]) by nospam.nichework.com (Postfix) with ESMTP id D1E51B400C for ; Wed, 17 Oct 2018 22:23:10 -0400 (EDT) Received: from nospam.nichework.com ([127.0.0.1]) by localhost (nospam.nichework.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JJkkezwsRcAd for ; Wed, 17 Oct 2018 22:23:10 -0400 (EDT) Received: from mail.nichework.com (mail.nichework.com [108.161.151.158]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by nospam.nichework.com (Postfix) with ESMTPS id 8E848B400B for ; Wed, 17 Oct 2018 22:23:10 -0400 (EDT) Received: from mail.nichework.com (localhost.localdomain [127.0.0.1]) by mail.nichework.com (Postfix) with ESMTPS id D2ED44E1078 for ; Wed, 17 Oct 2018 19:23:35 -0700 (PDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.nichework.com (Postfix) with ESMTP id C66664E10DB for ; Wed, 17 Oct 2018 19:23:35 -0700 (PDT) Received: from mail.nichework.com ([127.0.0.1]) by localhost (mail.nichework.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 3Hp4OliQK-jH for ; Wed, 17 Oct 2018 19:23:35 -0700 (PDT) Received: from slink.everybody.org (unknown [24.229.149.248]) by mail.nichework.com (Postfix) with ESMTPSA id 841F34E1078 for ; Wed, 17 Oct 2018 19:23:35 -0700 (PDT) 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" To: emacs-orgmode@gnu.org Working code changes: diff -ub org-plus-contrib-20181008/ox-odt.el\~ org-plus-contrib-20181008/ox-odt.el --- org-plus-contrib-20181008/ox-odt.el~ 2018-10-12 19:13:13.095335320 -0400 +++ org-plus-contrib-20181008/ox-odt.el 2018-10-17 22:10:30.194483160 -0400 @@ -1966,10 +1966,13 @@ CONTENTS holds the contents of the item. INFO is a plist holding contextual information." (let* ((plain-list (org-export-get-parent item)) + (count (org-element-property :counter item)) (type (org-element-property :type plain-list))) (unless (memq type '(ordered unordered descriptive-1 descriptive-2)) (error "Unknown list type: %S" type)) - (format "\n\n%s\n%s" + (format (concat "\n\n%s\n%s") contents (if (org-element-map item 'table #'identity info 'first-match) "" Diff finished. Wed Oct 17 22:11:23 2018