diff options
| author | Bram Moolenaar <Bram@vim.org> | 2006-09-09 12:52:42 +0000 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2006-09-09 12:52:42 +0000 |
| commit | 55b7cf8ae2862ad4f6056bc911732af9a3b02985 (patch) | |
| tree | 90a2bf2a7a558dd17d0020ba1fc133f11ae5757e /src | |
| parent | 41e6cd5f2a2f8d4fe19c1469d62f509aa4be8a2b (diff) | |
| download | vim-git-55b7cf8ae2862ad4f6056bc911732af9a3b02985.tar.gz | |
updated for version 7.0-094v7.0.094
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 3 | ||||
| -rw-r--r-- | src/fileio.c | 3 | ||||
| -rw-r--r-- | src/version.c | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index e05bd3935..55cef35d9 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1386,7 +1386,8 @@ enter_buffer(buf) } else { - need_fileinfo = TRUE; /* display file info after redraw */ + if (!msg_silent) + need_fileinfo = TRUE; /* display file info after redraw */ (void)buf_check_timestamp(curbuf, FALSE); /* check if file changed */ #ifdef FEAT_AUTOCMD curwin->w_topline = 1; diff --git a/src/fileio.c b/src/fileio.c index 4ef21fe40..2e2b826ca 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -316,6 +316,9 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags) * display the line. */ ex_no_reprint = TRUE; + /* don't display the file info for another buffer now */ + need_fileinfo = FALSE; + /* * For Unix: Use the short file name whenever possible. * Avoids problems with networks and when directory names are changed. diff --git a/src/version.c b/src/version.c index 0847080ba..f8fd85988 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 94, +/**/ 93, /**/ 92, |
