diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-27 14:27:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-27 14:27:55 +0200 |
commit | e5b53381a27861578498dab3ab9ba7b989677787 (patch) | |
tree | b8cd55c7d9010aed7627dc85918d2b21efdc5d31 /src/nvim/undo.c | |
parent | 9d77a0768697aced470c72ba71d0e04cf45f0fd0 (diff) | |
parent | 16cc3cf9eb7e9b2caefc77311fb3e14743102418 (diff) | |
download | rneovim-e5b53381a27861578498dab3ab9ba7b989677787.tar.gz rneovim-e5b53381a27861578498dab3ab9ba7b989677787.tar.bz2 rneovim-e5b53381a27861578498dab3ab9ba7b989677787.zip |
Merge #9942 from janlazo/vim-8.1.0837
vim-patch:8.1.{837,1180,1194,1203,1207,1209}
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r-- | src/nvim/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c index 8bb1b9e745..0a32d9b872 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -1818,7 +1818,7 @@ void undo_time(long step, bool sec, bool file, bool absolute) u_header_T *uhp = NULL; u_header_T *last; int mark; - int nomark; + int nomark = 0; // shut up compiler int round; bool dosec = sec; bool dofile = file; |