patch 8.0.0722: screen is messed by timer up at inputlist() prompt

Problem:    Screen is messed by timer up at inputlist() prompt.
Solution:   Set state to ASKMORE. (closes #1843)
diff --git a/src/misc1.c b/src/misc1.c
index 7c2f26c..4f33015 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -3592,7 +3592,7 @@
     save_cmdline_row = cmdline_row;
     cmdline_row = 0;
     save_State = State;
-    State = CMDLINE;
+    State = ASKMORE;	/* prevents a screen update when using a timer */
 
     i = get_number(TRUE, mouse_used);
     if (KeyTyped)
diff --git a/src/version.c b/src/version.c
index 906e3fa..91e6ded 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    722,
+/**/
     721,
 /**/
     720,