summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-06 11:41:57 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-06 11:41:57 +0000
commit0c1550d9e94046d3fc9a8ad70b895eaa1e53fca5 (patch)
treeaab5ecd3f6ad2620c2a3ba7da177661b6f6d4f97 /src/syntax.c
parent500761b1cf666f030009d2dcdacfdce28f68f43d (diff)
downloadvim-git-0c1550d9e94046d3fc9a8ad70b895eaa1e53fca5.tar.gz
patch 8.2.4307: a few more messages should not be translatedv8.2.4307
Problem: A few more messages should not be translated. Solution: Remove _().
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c
index f1c844f9d..11f5587e5 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -3329,9 +3329,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int syncing UNUSED)
if (*arg == NUL)
{
if (curwin->w_s->b_syn_conceal)
- msg(_("syntax conceal on"));
+ msg("syntax conceal on");
else
- msg(_("syntax conceal off"));
+ msg("syntax conceal off");
}
else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2)
curwin->w_s->b_syn_conceal = TRUE;
@@ -3359,9 +3359,9 @@ syn_cmd_case(exarg_T *eap, int syncing UNUSED)
if (*arg == NUL)
{
if (curwin->w_s->b_syn_ic)
- msg(_("syntax case ignore"));
+ msg("syntax case ignore");
else
- msg(_("syntax case match"));
+ msg("syntax case match");
}
else if (STRNICMP(arg, "match", 5) == 0 && next - arg == 5)
curwin->w_s->b_syn_ic = FALSE;
@@ -3471,7 +3471,7 @@ syn_cmd_iskeyword(exarg_T *eap, int syncing UNUSED)
msg_puts("\n");
if (curwin->w_s->b_syn_isk != empty_option)
{
- msg_puts(_("syntax iskeyword "));
+ msg_puts("syntax iskeyword ");
msg_outtrans(curwin->w_s->b_syn_isk);
}
else