patch 8.0.0856: MS-Windows: terminal job doesn't take options

Problem:    MS-Windows: terminal job doesn't take options.
Solution:   Call job_set_options(). (Yasuhiro Matsumoto)
diff --git a/src/terminal.c b/src/terminal.c
index d3dde18..d153187 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -2355,6 +2355,7 @@
     create_vterm(term, rows, cols);
 
     channel_set_job(channel, job, opt);
+    job_set_options(job, opt);
 
     job->jv_channel = channel;
     job->jv_proc_info.hProcess = child_process_handle;
diff --git a/src/version.c b/src/version.c
index bf30da6..b8d0203 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    856,
+/**/
     855,
 /**/
     854,