summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-17 16:55:13 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-17 16:55:13 +0200
commitf5be7cd01642fafc4b7d68894eb60cca60c7a405 (patch)
treebcbb7f2839092ec9b2d68b4d30b2678efff71d99 /src/ex_cmds2.c
parenta83e3962ac0e4bbfef15a072ad9a7390fc255409 (diff)
patch 8.0.0953: get "no write since last change" error in terminal windowv8.0.0953
Problem: Get "no write since last change" error in terminal window. Solution: Use another message when closing a terminal window. Make ":quit!" also end the job.
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r--src/ex_cmds2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 8a11fbbe9f..8ca11f0663 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -1934,9 +1934,9 @@ check_changed(buf_T *buf, int flags)
}
#endif
if (flags & CCGD_EXCMD)
- EMSG(_(e_nowrtmsg));
+ no_write_message();
else
- EMSG(_(e_nowrtmsg_nobang));
+ no_write_message_nobang();
return TRUE;
}
return FALSE;