0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0226

This commit is contained in:
Bram Moolenaar
2006-03-16 21:35:52 +00:00
parent cf03447964
commit d3667a2e29
10 changed files with 58 additions and 21 deletions

View File

@@ -8196,7 +8196,10 @@ ex_bang(eap)
ex_undo(eap)
exarg_T *eap;
{
u_undo(1);
if (eap->addr_count == 1) /* :undo 123 */
undo_time(eap->line2, FALSE, TRUE);
else
u_undo(1);
}
/*
@@ -8238,7 +8241,7 @@ ex_later(eap)
if (*p != NUL)
EMSG2(_(e_invarg2), eap->arg);
else
undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec);
undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
}
/*