summaryrefslogtreecommitdiffstats
path: root/src/optionstr.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/optionstr.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/optionstr.c')
-rw-r--r--src/optionstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/optionstr.c b/src/optionstr.c
index cfbcf3acba..fa7084c65c 100644
--- a/src/optionstr.c
+++ b/src/optionstr.c
@@ -379,7 +379,7 @@ set_string_option_direct(
if (idx < 0) // not found (should not happen)
{
semsg(_(e_internal_error_str), "set_string_option_direct()");
- siemsg(_("For option %s"), name);
+ siemsg("For option %s", name);
return;
}
}