* mu4e: don't use beginning-of-buffer non-interactively (fixes compilation warning)

This commit is contained in:
djcb 2013-03-17 19:45:16 +02:00
parent 893cde89b9
commit 9c7d2e3b16
1 changed files with 12 additions and 10 deletions

View File

@ -194,7 +194,8 @@ store your org-contacts."
the given regexp."
(with-temp-buffer
(insert-file-contents path)
(save-excursion (beginning-of-buffer)
(save-excursion
(goto-char (point-min))
(if (re-search-forward regexp nil t)
t
nil))))
@ -204,7 +205,8 @@ store your org-contacts."
with the string replace."
(with-temp-file path
(insert-file-contents path)
(save-excursion (beginning-of-buffer)
(save-excursion
(goto-char (point-min))
(if (re-search-forward regexp nil t)
(replace-match to-string nil nil)))))