diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-03-11 21:02:00 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-03-11 21:02:00 +0000 |
commit | 6ae909839f42f74d7e2af61fa896719b002f6ec0 (patch) | |
tree | 8177a7934f79937016184429728fc4f83ec5274a /src | |
parent | aad8664d070532790e127028e0fc772a1ae6b30e (diff) | |
download | vim-6ae909839f42f74d7e2af61fa896719b002f6ec0.zip |
updated for version 7.1-271
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index fbb3ada47..bcabbffc8 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -9239,7 +9239,7 @@ aucmd_prepbuf(aco, buf) aco_save_T *aco; /* structure to save values in */ buf_T *buf; /* new curbuf */ { - aco->save_buf = buf; + aco->save_buf = curbuf; curbuf = buf; curwin->w_buffer = buf; } diff --git a/src/version.c b/src/version.c index bc906d453..780f6bff7 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 */ /**/ + 271, +/**/ 270, /**/ 269, |