diff options
-rw-r--r-- | vim/after/ftplugin/mail.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim index fd67bc51..2894ec2b 100644 --- a/vim/after/ftplugin/mail.vim +++ b/vim/after/ftplugin/mail.vim @@ -53,7 +53,7 @@ for lnum in range(1, line('$')) " Get the leading quote string, if any; skip if there isn't one let quote = matchstr(line, '^>[> ]*') - if strlen(quote) == 0 + if !strlen(quote) continue endif |