aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/mail/header.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/mail/header.vim')
-rw-r--r--vim/autoload/mail/header.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/mail/header.vim b/vim/autoload/mail/header.vim
index 7a360a2c..5284b84d 100644
--- a/vim/autoload/mail/header.vim
+++ b/vim/autoload/mail/header.vim
@@ -15,7 +15,7 @@ function! mail#header#Read() abort
\ 'body': matchlist[2],
\}
call add(fields, field)
- elseif line =~ '^\s' && exists('field')
+ elseif line =~# '^\s' && exists('field')
let field['body'] .= "\n" . line
elseif line ==# ''
break