• R/O
  • SSH

vim: 提交

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

修订版6fe386286ea837cb87546fe58b78abbcbf4de4bc (tree)
时间2020-10-24 02:00:03
作者Bram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Log Message

patch 8.2.1895: Vim9: silent command modifier test fails

Commit: https://github.com/vim/vim/commit/210681c5090266af1a41a77e0fe64838a69993fb
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Oct 23 18:51:06 2020 +0200

patch 8.2.1895: Vim9: silent command modifier test fails
Problem: Vim9: silent command modifier test fails.
Solution: Add missing changes.

更改概述

差异

diff -r e3c3096f7e64 -r 6fe386286ea8 src/ex_docmd.c
--- a/src/ex_docmd.c Fri Oct 23 18:15:04 2020 +0200
+++ b/src/ex_docmd.c Fri Oct 23 19:00:03 2020 +0200
@@ -2849,7 +2849,10 @@
28492849 ++emsg_silent;
28502850 ++eap->did_esilent;
28512851 }
2852+ cmdmod.emsg_silent = TRUE;
28522853 }
2854+ else
2855+ cmdmod.msg_silent = TRUE;
28532856 continue;
28542857
28552858 case 't': if (checkforcmd(&p, "tab", 3))
diff -r e3c3096f7e64 -r 6fe386286ea8 src/version.c
--- a/src/version.c Fri Oct 23 18:15:04 2020 +0200
+++ b/src/version.c Fri Oct 23 19:00:03 2020 +0200
@@ -751,6 +751,8 @@
751751 static int included_patches[] =
752752 { /* Add new patch number below this line */
753753 /**/
754+ 1895,
755+/**/
754756 1894,
755757 /**/
756758 1893,
Show on old repository browser