Skip to content

Commit 04b08c3

Browse files
committed
patch 7.4.1241
Problem: Missing change in Makefile due to diff mismatch Solution: Update the list of object files.
1 parent bc07309 commit 04b08c3

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

src/Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,7 @@ OBJ_COMMON = \
15911591
objects/if_cscope.o \
15921592
objects/if_xcmdsrv.o \
15931593
objects/mark.o \
1594-
objects/memline.o \
1594+
objects/memline.o \
15951595
objects/menu.o \
15961596
objects/message.o \
15971597
objects/misc1.o \
@@ -1633,11 +1633,17 @@ OBJ_COMMON = \
16331633
$(WSDEBUG_OBJ)
16341634

16351635
OBJ = $(OBJ_COMMON) \
1636+
objects/json.o \
16361637
objects/main.o \
16371638
objects/memfile.o
16381639

1640+
JSON_TEST_OBJ = $(OBJ_COMMON) \
1641+
objects/json_test.o \
1642+
objects/memfile.o
1643+
16391644
MEMFILE_TEST_OBJ = $(OBJ_COMMON) \
1640-
objects/memfile_test.o
1645+
objects/json.o \
1646+
objects/memfile_test.o
16411647

16421648
PRO_AUTO = \
16431649
blowfish.pro \

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,8 @@ static char *(features[]) =
742742

743743
static int included_patches[] =
744744
{ /* Add new patch number below this line */
745+
/**/
746+
1241,
745747
/**/
746748
1240,
747749
/**/

0 commit comments

Comments
 (0)