comparison src/gui.c @ 26861:df2de1e63de0 v8.2.3959

patch 8.2.3959: error messages are spread out Commit: https://github.com/vim/vim/commit/6d0570117ac86b7979bf249de5741088212d6e17 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 31 18:49:43 2021 +0000 patch 8.2.3959: error messages are spread out Problem: Error messages are spread out. Solution: Move more errors to errors.h.
author Bram Moolenaar <Bram@vim.org>
date Fri, 31 Dec 2021 20:00:05 +0100
parents fc859aea8cec
children 79c76ca2c53c
comparison
equal deleted inserted replaced
26860:07ad81bfab52 26861:df2de1e63de0
386 static int result = MAYBE; 386 static int result = MAYBE;
387 387
388 if (result != MAYBE) 388 if (result != MAYBE)
389 { 389 {
390 if (result == FAIL) 390 if (result == FAIL)
391 emsg(_("E229: Cannot start the GUI")); 391 emsg(_(e_cannot_start_the_GUI));
392 return result; 392 return result;
393 } 393 }
394 394
395 gui.shell_created = FALSE; 395 gui.shell_created = FALSE;
396 gui.dying = FALSE; 396 gui.dying = FALSE;