diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-27 15:21:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-27 15:21:32 +0100 |
commit | 43acbce1bb0a33edc67496b220cae629ad95d2d8 (patch) | |
tree | e47403fe874bd7ee5457faeb9b8c196f3e4ea7b4 /src/gui_mac.c | |
parent | 187db50d0499aecf4cfd42fb4db0a1bebf61c8cd (diff) | |
download | vim-git-43acbce1bb0a33edc67496b220cae629ad95d2d8.tar.gz |
patch 7.4.1427v7.4.1427
Problem: Trailing comma in enums is not ANSI C.
Solution: Remove the trailing commas.
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index c766ed035..c87456e1f 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -6513,7 +6513,7 @@ im_get_status(void) static MenuRef contextMenu = NULL; enum { - kTabContextMenuId = 42, + kTabContextMenuId = 42 }; // the caller has to CFRelease() the returned string |