branch: externals/org
commit b45b393265490be454736c9e751dab10a8d38cab
Author: Ihor Radchenko <yanta...@posteo.net>
Commit: Ihor Radchenko <yanta...@posteo.net>

    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 caac4c9aa2..186da4ed30 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)))))

Reply via email to