From 522d7d0afe2b9eb9c5c59e1557656445d4177704 Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Mon, 29 Jan 2024 14:38:01 +0100 Subject: [PATCH] org-odt-get-table-cell-styles: Fix reference to obsolete text property * lisp/ox-odt.el (org-odt-get-table-cell-styles): Remove reference to long-obsolete text property used to store table alignment info. Instead, refer to table alignment cookies described in the manual. Reported-by: Stefan Kangas Link: https://orgmode.org/list/CADwFkmnsjEg+d7ty0bjT5RGQiS-SdKcvRUy+KHDh+maa92bp1w@mail.gmail.com --- lisp/ox-odt.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el index c877deae3..f46b25a9a 100644 --- a/lisp/ox-odt.el +++ b/lisp/ox-odt.el @@ -3248,8 +3248,9 @@ Return a cons of (TABLE-CELL-STYLE-NAME . PARAGRAPH-STYLE-NAME). When STYLE-SPEC is nil, style the table cell the conventional way - choose cell borders based on row and column groupings and -choose paragraph alignment based on `org-col-cookies' text -property. See also `org-odt-table-style-spec'. +choose paragraph alignment based on table alignment cookies (see info +node `(org)Column Width and Alignment'). See also +`org-odt-table-style-spec'. When STYLE-SPEC is non-nil, ignore the above cookie and return styles congruent with the ODF-1.2 specification."