mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
vim: fix off-by-one error when removing header from message to send out
This commit is contained in:
parent
b76852dcc5
commit
fd805c16c3
1 changed files with 1 additions and 1 deletions
|
@ -938,7 +938,7 @@ function! s:NM_compose_send()
|
|||
let lnum = lnum + 1
|
||||
let line = getline(lnum)
|
||||
endwhile
|
||||
let body_starts = lnum + 1
|
||||
let body_starts = lnum
|
||||
exec printf('0,%dd', body_starts)
|
||||
write
|
||||
|
||||
|
|
Loading…
Reference in a new issue