patch 8.2.1894: Vim9: command modifiers are not supported

Problem:    Vim9: command modifiers are not supported.
Solution:   Support "silent" and "silent!".
diff --git a/src/structs.h b/src/structs.h
index eb86e48..f01598e 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -643,6 +643,8 @@
     char_u	*save_ei;		// saved value of 'eventignore'
     regmatch_T	filter_regmatch;	// set by :filter /pat/
     int		filter_force;		// set for :filter!
+    int		msg_silent;		// TRUE when ":silent" was used
+    int		emsg_silent;		// TRUE when ":silent!" was used
 } cmdmod_T;
 
 #define MF_SEED_LEN	8