patch 7.4.1798
Problem:    Still compiler warning for unused return value. (Charles Campbell)
Solution:   Assign to ignoredp.
diff --git a/src/term.c b/src/term.c
index cc9d7ad..3c8c0fa 100644
--- a/src/term.c
+++ b/src/term.c
@@ -6177,7 +6177,7 @@
 	size_t		len;
 	int		pos;
 
-	(void)fgets(line, LINE_LEN, fd);
+	ignoredp = fgets(line, LINE_LEN, fd);
 	len = strlen(line);
 
 	if (len <= 1 || line[len - 1] != '\n')
diff --git a/src/version.c b/src/version.c
index 4fb17c4..44f37a7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1798,
+/**/
     1797,
 /**/
     1796,