summaryrefslogtreecommitdiff
path: root/src/sign.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 19:33:50 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 19:33:50 +0000
commitcbadefe25a27ded93548eaa7a325d2a04bf55d7c (patch)
treec0411fb9bfe3e4728d319817f98841df6fc8c6d6 /src/sign.c
parent1f4a3457a3e55cdacd70ab0d5be587c248fb1ce8 (diff)
downloadvim-git-cbadefe25a27ded93548eaa7a325d2a04bf55d7c.tar.gz
patch 8.2.3975: error messages are spread outv8.2.3975
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/sign.c')
-rw-r--r--src/sign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sign.c b/src/sign.c
index 0656c0f50..290d41482 100644
--- a/src/sign.c
+++ b/src/sign.c
@@ -1019,7 +1019,7 @@ sign_define_init_text(sign_T *sp, char_u *text)
// Currently sign text must be one or two display cells
if (s != endp || cells < 1 || cells > 2)
{
- semsg(_("E239: Invalid sign text: %s"), text);
+ semsg(_(e_invalid_sign_text_str), text);
return FAIL;
}