summaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 435bdc9e15..77d9bf772b 100644
--- a/src/window.c
+++ b/src/window.c
@@ -167,7 +167,7 @@ check_can_set_curbuf_disabled(void)
{
if (curwin->w_p_wfb)
{
- semsg("%s", e_winfixbuf_cannot_go_to_buffer);
+ emsg(_(e_winfixbuf_cannot_go_to_buffer));
return FALSE;
}
return TRUE;
@@ -183,7 +183,7 @@ check_can_set_curbuf_forceit(int forceit)
{
if (!forceit && curwin->w_p_wfb)
{
- semsg("%s", e_winfixbuf_cannot_go_to_buffer);
+ emsg(_(e_winfixbuf_cannot_go_to_buffer));
return FALSE;
}
return TRUE;