diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-04-08 14:04:58 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-04-11 01:58:42 +0200 |
commit | 7362ca44305d11c41d0dee14f49d0ac248abacf8 (patch) | |
tree | a6d3ef44f1da983c74038d14a41bf807d392c17b /src/nvim/ex_docmd.c | |
parent | 9f598e57656fe072114b9f1e73d3051423e13234 (diff) | |
download | rneovim-7362ca44305d11c41d0dee14f49d0ac248abacf8.tar.gz rneovim-7362ca44305d11c41d0dee14f49d0ac248abacf8.tar.bz2 rneovim-7362ca44305d11c41d0dee14f49d0ac248abacf8.zip |
cleanup: remove main_start_gui()
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 4b37abab9e..93cb0e50fa 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -6975,12 +6975,10 @@ do_exedit ( ex_no_reprint = TRUE; } -/* - * ":gui" and ":gvim" when there is no GUI. - */ +/// ":gui" and ":gvim" when there is no GUI. static void ex_nogui(exarg_T *eap) { - eap->errmsg = e_nogvim; + eap->errmsg = (char_u *)N_("E25: Nvim does not have a built-in GUI"); } |