summaryrefslogtreecommitdiff
path: root/src/change.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
commit9a846fbaa569b3690d70606f2a86e97f77a05496 (patch)
treecbe5304927fe21586593c94342e4f023aa3e0837 /src/change.c
parentb34689010a587e85ff724051f276513a15c634d0 (diff)
downloadvim-git-9a846fbaa569b3690d70606f2a86e97f77a05496.tar.gz
patch 8.2.3977: error messages are spread outv8.2.3977
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/change.c')
-rw-r--r--src/change.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/change.c b/src/change.c
index bc77fa23d..9f1705f2a 100644
--- a/src/change.c
+++ b/src/change.c
@@ -1247,7 +1247,7 @@ del_bytes(
// If "count" is negative the caller must be doing something wrong.
if (count < 1)
{
- siemsg("E292: Invalid count for del_bytes(): %ld", count);
+ siemsg(e_invalid_count_for_del_bytes_nr, count);
return FAIL;
}