patch 9.0.0981: build error in tiny version

Problem:    Build error in tiny version.
Solution:   Add #ifdef.
diff --git a/src/term.c b/src/term.c
index caffc35..f00aac9 100644
--- a/src/term.c
+++ b/src/term.c
@@ -3726,7 +3726,9 @@
     if (send_t_RK
 	    && !work_pending()
 	    && !ex_normal_busy
+#ifdef FEAT_EVAL
 	    && !in_feedkeys
+#endif
 	    && !exiting)
     {
 	send_t_RK = FALSE;
diff --git a/src/version.c b/src/version.c
index 0708666..22c3c5c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    981,
+/**/
     980,
 /**/
     979,