diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-09-30 11:24:36 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-09-30 11:24:36 +0000 |
commit | becf428bc0ac7f7c5c1cc9e3213c025655c0beea (patch) | |
tree | 8bf42421fe23267dcedd0ba8d70a0e976000cc4d /src/ex_docmd.c | |
parent | 09736232affa71893b93293cc9c4681b84b0cbf2 (diff) | |
download | vim-git-becf428bc0ac7f7c5c1cc9e3213c025655c0beea.tar.gz |
updated for version 7.2-265v7.2.265
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 2bdf0c7f7..8c74dd832 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -2695,7 +2695,7 @@ doend: { /* messages could be enabled for a serious error, need to check if the * counters don't become negative */ - if (!did_emsg) + if (!did_emsg || msg_silent > save_msg_silent) msg_silent = save_msg_silent; emsg_silent -= did_esilent; if (emsg_silent < 0) |