1
0
forked from aniani/vim

patch 7.4.701

Problem:    Compiler warning for using uninitialized variable. (Yasuhiro
            Matsumoto)
Solution:   Initialize it.
This commit is contained in:
Bram Moolenaar
2015-04-15 14:27:49 +02:00
parent ba172f2eab
commit ec45c4a6df
2 changed files with 3 additions and 1 deletions

View File

@@ -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++)

View File

@@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
701,
/**/
700,
/**/