commit | 0bc380a96b87ee02b01a7d4677ad4d973563a84e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 10 13:52:13 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 10 13:52:13 2010 +0200 |
tree | d459d5f3edebe4ae3a7b144dadda984bfaa3e5f9 | |
parent | d04b7507fde8bb7e3103ce53f2156c798b5e5245 [diff] [blame] |
Fixed ":s" message. Docs updates.
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index e1d270c..c0668cf 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c
@@ -5176,6 +5176,8 @@ { if (got_int) STRCPY(msg_buf, _("(Interrupted) ")); + else + *msg_buf = NUL; if (sub_nsubs == 1) vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), "%s", count_only ? _("1 match") : _("1 substitution"));