summaryrefslogtreecommitdiffstats
path: root/src/gui_x11.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 14:19:49 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 14:19:49 +0000
commit460ae5dfca31fa627531c263184849976755cf6b (patch)
treed94de6a24285bc10fd62ad4ae9aecb53f9a7e913 /src/gui_x11.c
parentb37a65e4bf08c4eec4fa5b81a5efc3945fca44de (diff)
patch 8.2.3967: error messages are spread outv8.2.3967
Problem: Error messages are spread out. Solution: Move more errors to errors.h.
Diffstat (limited to 'src/gui_x11.c')
-rw-r--r--src/gui_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_x11.c b/src/gui_x11.c
index 2e871770fe..07699d3fe9 100644
--- a/src/gui_x11.c
+++ b/src/gui_x11.c
@@ -1218,7 +1218,7 @@ gui_mch_init_check(void)
if (app_context == NULL || gui.dpy == NULL)
{
gui.dying = TRUE;
- emsg(_(e_opendisp));
+ emsg(_(e_cannot_open_display));
return FAIL;
}
return OK;