patch 8.2.2074: Vim9: using :normal from Vim9 script can't handle range

Problem:    Vim9: using :normal from Vim9 script can't handle range.
Solution:   Execute a :normal command in legacy script context. (closes #7401)
diff --git a/src/structs.h b/src/structs.h
index 24baa34..b18134a 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -4155,6 +4155,7 @@
     int		save_finish_op;
     int		save_opcount;
     int		save_reg_executing;
+    int		save_script_version;
     tasave_T	tabuf;
 } save_state_T;