diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-04-11 03:29:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 03:29:18 +0200 |
commit | f96d99ad1118d79ae5c38bb5e2c4be1280caa3cc (patch) | |
tree | e5676f34610bafc482179f8c17f45314d2d33acb /src/nvim/ex_docmd.c | |
parent | 84bac9f507e3258c574cfc91ce64889a2e125d46 (diff) | |
parent | 777d34ec376ee8706a80d4f1f44fb83397753116 (diff) | |
download | rneovim-f96d99ad1118d79ae5c38bb5e2c4be1280caa3cc.tar.gz rneovim-f96d99ad1118d79ae5c38bb5e2c4be1280caa3cc.tar.bz2 rneovim-f96d99ad1118d79ae5c38bb5e2c4be1280caa3cc.zip |
Merge #8247 'server: introduce --listen'
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"); } |