aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/mail.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/mail.vim')
-rw-r--r--vim/after/ftplugin/mail.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/mail.vim b/vim/after/ftplugin/mail.vim
index 260b0363..cba446a3 100644
--- a/vim/after/ftplugin/mail.vim
+++ b/vim/after/ftplugin/mail.vim
@@ -44,7 +44,7 @@ for lnum in range(1, line('$'))
" Get current line
let line = getline(lnum)
- " Get the leading quote string, if any; stop if there isn't one
+ " Get the leading quote string, if any; skip if there isn't one
let quote = matchstr(line, '^>[> ]*')
if strlen(quote) == 0
continue