# HG changeset patch # User Bram Moolenaar # Date 1323871649 -3600 # Node ID 767bb493e7d31273edc45f4cb6602784f639f516 # Parent 7104cd9e82c1bfeced6affcde318e7178cfe0b6a updated for version 7.3.375 Problem: Duplicate return statement. Solution: Remove the superfluous one. (Dominique Pelle) diff --git a/src/gui_mac.c b/src/gui_mac.c --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -3216,7 +3216,7 @@ gui_mch_new_colors(void) { /* TODO: * This proc is called when Normal is set to a value - * so what msut be done? I don't know + * so what must be done? I don't know */ } @@ -3303,7 +3303,6 @@ gui_mch_get_winpos(int *x, int *y) *x = bounds.left; *y = bounds.top; return OK; - return FAIL; } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 375, +/**/ 374, /**/ 373,