From 6d0570117ac86b7979bf249de5741088212d6e17 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 31 Dec 2021 18:49:43 +0000 Subject: patch 8.2.3959: error messages are spread out Problem: Error messages are spread out. Solution: Move more errors to errors.h. --- src/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui.c') diff --git a/src/gui.c b/src/gui.c index 9b19cefe36..a5f449a386 100644 --- a/src/gui.c +++ b/src/gui.c @@ -388,7 +388,7 @@ gui_init_check(void) if (result != MAYBE) { if (result == FAIL) - emsg(_("E229: Cannot start the GUI")); + emsg(_(e_cannot_start_the_GUI)); return result; } -- cgit v1.2.3