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 b2e400f..def619f 100644
--- a/src/hardcopy.c
+++ b/src/hardcopy.c
@@ -2513,7 +2513,7 @@
     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++)