* mu4e: don't error out if no empty lines are found

This commit is contained in:
djcb 2013-10-21 23:17:35 +03:00
parent 9ddb7510b9
commit 86aafa7fe0
1 changed files with 1 additions and 1 deletions

View File

@ -1088,7 +1088,7 @@ used in the view and compose modes."
(save-excursion
(let ((more-lines t))
(goto-char (point-min))
(when (search-forward-regexp "^\n") ;; search the first empty line
(when (search-forward-regexp "^\n" nil t) ;; search the first empty line
(while more-lines
;; Get the citation level at point -- i.e., the number of '>'
;; prefixes, starting with 0 for 'no citation'