summaryrefslogtreecommitdiffstats
path: root/src/blowfish.c
diff options
context:
space:
mode:
authorRestorerZ <restorer@mail2k.ru>2023-05-31 17:12:14 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-31 17:12:14 +0100
commit68ebcee0237d927dd5386073499162389d4d708a (patch)
treece198c27bc9d743c31fed87bb5c1076b4445fcf8 /src/blowfish.c
parent3c240f608c38ef1af67e112e0e689751c003f946 (diff)
patch 9.0.1594: some internal error messages are translatedv9.0.1594
Problem: Some internal error messages are translated. Solution: Consistently do not translate internal error messages. (closes #12459)
Diffstat (limited to 'src/blowfish.c')
-rw-r--r--src/blowfish.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blowfish.c b/src/blowfish.c
index 6a339143c7..95d14ccac9 100644
--- a/src/blowfish.c
+++ b/src/blowfish.c
@@ -416,7 +416,7 @@ bf_key_init(
keylen = (int)STRLEN(key) / 2;
if (keylen == 0)
{
- iemsg(_(e_bf_key_init_called_with_empty_password));
+ iemsg(e_bf_key_init_called_with_empty_password);
return;
}
for (i = 0; i < keylen; i++)