summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-04 19:56:39 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-04 19:56:39 +0200
commit55b419b871dd35f5b05dd2aed65f14461b493ba9 (patch)
tree48f396af7c38545aa20211cc7c2bcf23302f98e2 /src/ex_cmds.c
parentdda749ce85cc07000faa86bfd2ceaecd8e4805fc (diff)
patch 8.2.1801: undo file not found when using ":args" or ":next"v8.2.1801
Problem: Undo file not found when using ":args" or ":next". Solution: Handle like editing another file. (closes #7072)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index c61f575335..a55fae709a 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -2849,9 +2849,12 @@ do_ecmd(
new_name = NULL;
set_bufref(&bufref, buf);
- if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
+ // If the buffer was used before, store the current contents so that
+ // the reload can be undone. Do not do this if the (empty) buffer is
+ // being re-used for another file.
+ if (!(curbuf->b_flags & BF_NEVERLOADED)
+ && (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur))
{
- // Save all the text, so that the reload can be undone.
// Sync first so that this is a separate undo-able action.
u_sync(FALSE);
if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)