diff --git a/src/macros.h b/src/macros.h index 86ae33b4a..6c2931a29 100644 --- a/src/macros.h +++ b/src/macros.h @@ -360,11 +360,8 @@ */ #define VIM_CLEAR(p) \ do { \ - if ((p) != NULL) \ - { \ - vim_free(p); \ - (p) = NULL; \ - } \ + vim_free(p); \ + (p) = NULL; \ } while (0) /* diff --git a/src/version.c b/src/version.c index 02f30abf3..aab2ea560 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1225, /**/ 1224, /**/