diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-14 15:07:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-14 15:07:29 +0100 |
commit | 68dfcdf7251f8624e2ebf916466f4a6035597f41 (patch) | |
tree | 77d5fe6494b6807b33824f7caecd6ef4fb395b87 /src/gui_mac.c | |
parent | b38e9ab4af90e54d80b3198b2a2ace503b966a28 (diff) | |
download | vim-git-68dfcdf7251f8624e2ebf916466f4a6035597f41.tar.gz |
updated for version 7.3.375v7.3.375
Problem: Duplicate return statement.
Solution: Remove the superfluous one. (Dominique Pelle)
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index 0a8b0bcc5..69c190301 100644 --- 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; } /* |