diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-11-06 05:04:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-06 05:04:37 +0100 |
commit | d31b94ac209d2161f60084d5fa1e18f0cbaf0207 (patch) | |
tree | 9afbf06aaa972109fb218f56e6f3ba06ba7cd6d3 /src/nvim/ops.c | |
parent | 04b3c327723587fa63f391884b8dfce44233cc77 (diff) | |
parent | 280943d9b938e95fcf77ef5290576630b84511fb (diff) | |
download | rneovim-d31b94ac209d2161f60084d5fa1e18f0cbaf0207.tar.gz rneovim-d31b94ac209d2161f60084d5fa1e18f0cbaf0207.tar.bz2 rneovim-d31b94ac209d2161f60084d5fa1e18f0cbaf0207.zip |
Merge #7188 from justinmk/doc
doc; minor runtime bug fixes
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index c6df71ea46..432c9a8b47 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -2735,7 +2735,7 @@ void do_put(int regname, yankreg_T *reg, int dir, long count, int flags) // Autocommands may be executed when saving lines for undo, which may make // y_array invalid. Start undo now to avoid that. if (u_save(curwin->w_cursor.lnum, curwin->w_cursor.lnum + 1) == FAIL) { - ELOG(_("Failed to save undo information")); + ELOG("Failed to save undo information"); return; } } |