commit | 9460b9d215821472ac18ec2a1d51b0c76c6f3cf0 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jan 09 14:37:01 2007 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jan 09 14:37:01 2007 +0000 |
tree | ed681c706290a1294692cb8e6e38cd46c1db0407 | |
parent | d675e2c5130849cb486665b097b62bbb00cc42e7 [diff] [blame] |
updated for version 7.0-181
diff --git a/src/fileio.c b/src/fileio.c index abbe1e7..2108bb8 100644 --- a/src/fileio.c +++ b/src/fileio.c
@@ -6178,8 +6178,8 @@ if (retval != FAIL) { curbuf = frombuf; - while (!bufempty()) - if (ml_delete(curbuf->b_ml.ml_line_count, FALSE) == FAIL) + for (lnum = curbuf->b_ml.ml_line_count; lnum > 0; --lnum) + if (ml_delete(lnum, FALSE) == FAIL) { /* Oops! We could try putting back the saved lines, but that * might fail again... */