From b45b393265490be454736c9e751dab10a8d38cab Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Wed, 3 Apr 2024 14:58:22 +0300 Subject: [PATCH] lisp/ox.el (org-export-table-row-is-special-p): Fix docstring Special rows may not be ignored depending on :with-special-rows option. --- lisp/ox.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/ox.el b/lisp/ox.el index caac4c9aa..186da4ed3 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -5086,8 +5086,7 @@ A table has a header when it contains at least two row groups." cache))))) (defun org-export-table-row-is-special-p (table-row _) - "Non-nil if TABLE-ROW is considered special. -All special rows will be ignored during export." + "Non-nil if TABLE-ROW is considered special." (when (eq (org-element-property :type table-row) 'standard) (let ((first-cell (org-element-contents (car (org-element-contents table-row)))))