aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-08-19 14:13:14 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-11-06 01:56:04 +0100
commit842a54a1bbdd3724ba9283269b3f9899b3844e35 (patch)
tree2ba7f8a8a49b9d8261d90d9d3b85b223abf52244 /src/nvim/ops.c
parent04b3c327723587fa63f391884b8dfce44233cc77 (diff)
downloadrneovim-842a54a1bbdd3724ba9283269b3f9899b3844e35.tar.gz
rneovim-842a54a1bbdd3724ba9283269b3f9899b3844e35.tar.bz2
rneovim-842a54a1bbdd3724ba9283269b3f9899b3844e35.zip
doc
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c2
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;
}
}