From: Bram Moolenaar Date: Wed, 15 Apr 2015 12:27:49 +0000 (+0200) Subject: patch 7.4.701 X-Git-Tag: v7.4.701 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=ec45c4a6dfd8acf52c8d1412188f54f79dde895e;p=thirdparty%2Fvim.git patch 7.4.701 Problem: Compiler warning for using uninitialized variable. (Yasuhiro Matsumoto) Solution: Initialize it. --- diff --git a/src/hardcopy.c b/src/hardcopy.c index b2e400f906..def619f3e5 100644 --- a/src/hardcopy.c +++ b/src/hardcopy.c @@ -2513,7 +2513,7 @@ mch_print_init(psettings, jobname, forceit) props = enc_canon_props(p_encoding); if (!(props & ENC_8BIT) && ((*p_pmcs != NUL) || !(props & ENC_UNICODE))) { - int cmap_first; + int cmap_first = 0; p_mbenc_first = NULL; for (cmap = 0; cmap < (int)NUM_ELEMENTS(prt_ps_mbfonts); cmap++) diff --git a/src/version.c b/src/version.c index c03b9a4c57..3f913caf99 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 701, /**/ 700, /**/