diff options
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index 68ca301d0..ea0c017ad 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -3802,7 +3802,7 @@ get_buf_size(buf_T *bufp) } } /* Correction for when last line doesn't have an EOL. */ - if (!bufp->b_p_eol && bufp->b_p_bin) + if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol)) char_count -= eol_size; } |