aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-04-11 03:29:18 +0200
committerGitHub <noreply@github.com>2018-04-11 03:29:18 +0200
commitf96d99ad1118d79ae5c38bb5e2c4be1280caa3cc (patch)
treee5676f34610bafc482179f8c17f45314d2d33acb /src/nvim/ex_docmd.c
parent84bac9f507e3258c574cfc91ce64889a2e125d46 (diff)
parent777d34ec376ee8706a80d4f1f44fb83397753116 (diff)
downloadrneovim-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.c6
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");
}