]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.033 v7.3.033
authorBram Moolenaar <Bram@vim.org>
Fri, 22 Oct 2010 20:13:52 +0000 (22:13 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 22 Oct 2010 20:13:52 +0000 (22:13 +0200)
Problem:    Can't build without FEAT_LOCALMAP.
Solution:   Add an #ifdef. (John Marriott)

src/getchar.c
src/version.c

index 8462517cdb6b87b7cc7d80f874c57ccde80ccf3e..05693727f643fea22db15ab56e1a4f91d6e2ff15 100644 (file)
@@ -5086,7 +5086,11 @@ check_map(keys, mode, exact, ign_mod, abbr, mp_ptr, local_ptr)
                        if (mp_ptr != NULL)
                            *mp_ptr = mp;
                        if (local_ptr != NULL)
+#ifdef FEAT_LOCALMAP
                            *local_ptr = local;
+#else
+                           *local_ptr = 0;
+#endif
                        return mp->m_str;
                    }
                }
index d8e9a519fe3ae434466014ab44da3575ecaa94a4..3b224776f3ab71823b30eaacb6ea09bb1c639afd 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    33,
 /**/
     32,
 /**/