patch 7.4.1357
Problem:    Error for returning value from void function.
Solution:   Don't do that.
diff --git a/src/eval.c b/src/eval.c
index 89eab3c..31dff05 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -10236,7 +10236,7 @@
     if (channel == NULL)
 	return;
     if (get_job_options(&argvars[1], &opt, JO_CALLBACK + JO_TIMEOUT) == FAIL)
-	return NULL;
+	return;
     channel_set_options(channel, &opt);
 }
 
diff --git a/src/version.c b/src/version.c
index c498942..9fb2cdb 100644
--- a/src/version.c
+++ b/src/version.c
@@ -748,6 +748,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1357,
+/**/
     1356,
 /**/
     1355,