diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-01-23 18:12:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-01-23 18:12:49 +0100 |
commit | b4d587cbd9450d1a28dfb40c5204e9071f7bd955 (patch) | |
tree | 49ee7b74b3f001946e9bc24d9993745d5a9f9016 /src/undo.c | |
parent | 4a36bcf0d8303c0ba6964f23e24a766242771ef3 (diff) | |
download | vim-git-b4d587cbd9450d1a28dfb40c5204e9071f7bd955.tar.gz |
updated for version 7.4.157v7.4.157
Problem: Error number used twice. (Yukihiro Nakadaira)
Solution: Change the one not referred in the docs.
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c index c16f2afa7..9e72d1f74 100644 --- a/src/undo.c +++ b/src/undo.c @@ -409,7 +409,7 @@ u_savecommon(top, bot, newbot, reload) { /* This happens when the FileChangedRO autocommand changes the * file in a way it becomes shorter. */ - EMSG(_("E834: Line count changed unexpectedly")); + EMSG(_("E881: Line count changed unexpectedly")); return FAIL; } #endif |