mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 7.4.1427
Problem: Trailing comma in enums is not ANSI C. Solution: Remove the trailing commas.
This commit is contained in:
parent
187db50d04
commit
43acbce1bb
@ -17,5 +17,5 @@ typedef enum {
|
|||||||
aid_qf_namebuf,
|
aid_qf_namebuf,
|
||||||
aid_qf_errmsg,
|
aid_qf_errmsg,
|
||||||
aid_qf_pattern,
|
aid_qf_pattern,
|
||||||
aid_last,
|
aid_last
|
||||||
} alloc_id_T;
|
} alloc_id_T;
|
||||||
|
@ -6513,7 +6513,7 @@ im_get_status(void)
|
|||||||
static MenuRef contextMenu = NULL;
|
static MenuRef contextMenu = NULL;
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
kTabContextMenuId = 42,
|
kTabContextMenuId = 42
|
||||||
};
|
};
|
||||||
|
|
||||||
// the caller has to CFRelease() the returned string
|
// the caller has to CFRelease() the returned string
|
||||||
|
@ -748,6 +748,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1427,
|
||||||
/**/
|
/**/
|
||||||
1426,
|
1426,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user