vim-patch:8.2.2231: when "--remote file" is used "file" is not reloaded

Problem:    When "--remote file" is used "file" is not reloaded.
Solution:   When a :drop command is used for a file that is already displayed
            in a window and it has not been changed, check if it needs to be
            reloaded. (closes vim/vim#7560)
e4862a0fe6

Remove unused "focus" parameter from "buf_check_timestamp()".
It was meant for removed GUI code.
This commit is contained in:
Jan Edmund Lazo
2020-12-27 14:24:54 -05:00
parent 883114e882
commit cff4cad25a
6 changed files with 23 additions and 11 deletions

View File

@@ -1587,7 +1587,7 @@ void enter_buffer(buf_T *buf)
need_fileinfo = true; // display file info after redraw
}
// check if file changed
(void)buf_check_timestamp(curbuf, false);
(void)buf_check_timestamp(curbuf);
curwin->w_topline = 1;
curwin->w_topfill = 0;