From 8b5e59c8c4cfcd3e2820a5036103889e9c8a3ae7 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 4 Mar 2013 15:56:10 +0100 Subject: [PATCH] Small fix to `org-fill-paragraph' * lisp/org.el (org-fill-paragraph): Do not look for table cells in a paragraph. --- lisp/org.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 82f907318..b68bb0d18 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -21831,7 +21831,8 @@ a footnote definition, try to fill the first paragraph within." (cons beg (org-element-map (org-element--parse-objects - beg end nil org-element-all-successors) + beg end nil + (remq 'table-cell org-element-all-successors)) 'line-break (lambda (lb) (org-element-property :end lb))))))) t)))