# HG changeset patch # User Christian Brabandt # Date 1461962706 -7200 # Node ID 0bc1d66dfa2f438e3458a171b4dd8f0197c22bec # Parent 099c3bd48beeee4b284589bcdc535a390468374e commit https://github.com/vim/vim/commit/bb82762907ba024717ad9af3b229c2fa6405cd36 Author: Bram Moolenaar Date: Fri Apr 29 22:33:27 2016 +0200 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 --- a/src/term.c +++ b/src/term.c @@ -6177,7 +6177,7 @@ gui_get_color_cmn(char_u *name) 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 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1798, +/**/ 1797, /**/ 1796,