Skip to content

Commit

Permalink
patch 9.0.1151: build failure
Browse files Browse the repository at this point in the history
Problem:    Build failure.
Solution:   Add missing part of :interface change.
  • Loading branch information
brammool committed Jan 5, 2023
1 parent 554d031 commit 5bcd29b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/structs.h
Expand Up @@ -1440,7 +1440,7 @@ typedef enum
VAR_JOB, // "v_job" is used
VAR_CHANNEL, // "v_channel" is used
VAR_INSTR, // "v_instr" is used
VAR_CLASS, // "v_class" is used
VAR_CLASS, // "v_class" is used (also used for interface)
VAR_OBJECT, // "v_object" is used
} vartype_T;

Expand Down Expand Up @@ -1482,10 +1482,15 @@ typedef struct {
char_u *ocm_init; // allocated
} ocmember_T;

#define CLASS_INTERFACE 1

// "class_T": used for v_class of typval of VAR_CLASS
// Also used for an interface (class_flags has CLASS_INTERFACE).
struct class_S
{
char_u *class_name; // allocated
int class_flags; // CLASS_ flags

int class_refcount;
int class_copyID; // used by garbage collection

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1151,
/**/
1150,
/**/
Expand Down

0 comments on commit 5bcd29b

Please sign in to comment.