Просмотр исходного кода

Small fix to `org-fill-paragraph'

* lisp/org.el (org-fill-paragraph): Do not look for table cells in
  a paragraph.
Nicolas Goaziou 12 лет назад
Родитель
Сommit
8b5e59c8c4
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      lisp/org.el

+ 2 - 1
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)))