diff options
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 14045267d..ff978ad66 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -687,7 +687,7 @@ do_move(linenr_T line1, linenr_T line2, linenr_T dest) if (dest >= line1 && dest < line2) { - emsg(_("E134: Cannot move a range of lines into itself")); + emsg(_(e_cannot_move_range_of_lines_into_itself)); return FAIL; } @@ -1329,7 +1329,7 @@ filterend: if (curbuf != old_curbuf) { --no_wait_return; - emsg(_("E135: *Filter* Autocommands must not change current buffer")); + emsg(_(e_filter_autocommands_must_not_change_current_buffer)); } else if (cmdmod.cmod_flags & CMOD_LOCKMARKS) { |