|
@@ -21111,7 +21111,13 @@ object (e.g., within a comment). In these case, you need to use
|
|
|
(delete-and-extract-region (point) (line-end-position))))
|
|
|
(newline-and-indent)
|
|
|
(save-excursion (insert trailing-data))))
|
|
|
- (t (if indent (newline-and-indent) (newline))))))
|
|
|
+ (t
|
|
|
+ ;; Do not auto-fill when point is in an Org property drawer.
|
|
|
+ (let ((auto-fill-function (and (not (org-at-property-p))
|
|
|
+ auto-fill-function)))
|
|
|
+ (if indent
|
|
|
+ (newline-and-indent)
|
|
|
+ (newline)))))))
|
|
|
|
|
|
(defun org-return-indent ()
|
|
|
"Goto next table row or insert a newline and indent.
|