0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-26 03:32:53 +00:00

Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2012-09-01 21:39:08 +02:00
commit ef3706ba92

View file

@ -21222,7 +21222,7 @@ meant to be filled."
(make-string (org-list-item-body-column
(org-element-property :begin parent))
? ))
((looking-at "[ \t]*") (match-string 0))
((looking-at "[ \t]+") (match-string 0))
(t ""))))
(comment-block
;; Only fill contents if P is within block boundaries.
@ -21234,7 +21234,7 @@ meant to be filled."
(skip-chars-backward " \r\t\n")
(line-beginning-position))))
(when (and (>= p cbeg) (< p cend))
(if (looking-at "[ \t]*") (match-string 0) ""))))))))))
(if (looking-at "[ \t]+") (match-string 0) ""))))))))))
(declare-function message-goto-body "message" ())
(defvar message-cite-prefix-regexp) ; From message.el