summaryrefslogtreecommitdiffstats
path: root/src/if_tcl.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/if_tcl.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/if_tcl.c')
-rw-r--r--src/if_tcl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_tcl.c b/src/if_tcl.c
index 130e3e17ea..9e7cd4c612 100644
--- a/src/if_tcl.c
+++ b/src/if_tcl.c
@@ -1552,7 +1552,7 @@ tclsetdelcmd(
reflist = reflist->next;
}
// This should never happen. Famous last word?
- iemsg(_(e_tcl_fatal_error_reflist_corrupt_please_report_this));
+ iemsg(e_tcl_fatal_error_reflist_corrupt_please_report_this);
Tcl_SetResult(interp, _("cannot register callback command: buffer/window reference not found"), TCL_STATIC);
return TCL_ERROR;
}