commit | d82a47dd0493ee976aa3f15ecdc9aea7da6ad5bf | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jan 05 20:24:39 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jan 05 20:24:39 2022 +0000 |
tree | 604109254c7057942fce5c1af26fdd1bc36c066f | |
parent | bb8cac56d9c398a2b546d9c81c15e8c3d8fd811e [diff] [blame] |
patch 8.2.4012: error messages are spread out Problem: Error messages are spread out. Solution: Move the last error messages to errors.h.
diff --git a/src/undo.c b/src/undo.c index 4c02551..ec972f0 100644 --- a/src/undo.c +++ b/src/undo.c
@@ -464,7 +464,7 @@ { // This happens when the FileChangedRO autocommand changes the // file in a way it becomes shorter. - emsg(_("E881: Line count changed unexpectedly")); + emsg(_(e_line_count_changed_unexpectedly)); return FAIL; } }