summaryrefslogtreecommitdiffstats
path: root/src/evalbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/evalbuffer.c')
-rw-r--r--src/evalbuffer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/evalbuffer.c b/src/evalbuffer.c
index 3527737b92..e77435b8f4 100644
--- a/src/evalbuffer.c
+++ b/src/evalbuffer.c
@@ -571,10 +571,13 @@ f_deletebufline(typval_T *argvars, typval_T *rettv)
{
if (wp->w_cursor.lnum > last)
wp->w_cursor.lnum -= count;
- else if (wp->w_cursor.lnum> first)
+ else if (wp->w_cursor.lnum > first)
wp->w_cursor.lnum = first;
if (wp->w_cursor.lnum > wp->w_buffer->b_ml.ml_line_count)
wp->w_cursor.lnum = wp->w_buffer->b_ml.ml_line_count;
+ wp->w_valid = 0;
+ if (wp->w_cursor.lnum <= wp->w_topline)
+ wp->w_topline = 1;
}
check_cursor_col();
deleted_lines_mark(first, count);