diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-01 13:20:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-01 13:20:31 +0100 |
commit | bbea47075cc4e7826e9f8c203e4272ba023ed7b0 (patch) | |
tree | fbdec3eeea4ca32ada2f309d8c0155087775cfb5 /src/Make_ivc.mak | |
parent | 9067cd6cdfdc0bb869aa7f5d2a6c607ea8255239 (diff) | |
download | vim-git-bbea47075cc4e7826e9f8c203e4272ba023ed7b0.tar.gz |
patch 8.1.0673: functionality for signs is spread out over several filesv8.1.0673
Problem: Functionality for signs is spread out over several files.
Solution: Move most of the sign functionality into sign.c. (Yegappan
Lakshmanan, closes #3751)
Diffstat (limited to 'src/Make_ivc.mak')
-rw-r--r-- | src/Make_ivc.mak | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Make_ivc.mak b/src/Make_ivc.mak index c8c1c2f97..784cab931 100644 --- a/src/Make_ivc.mak +++ b/src/Make_ivc.mak @@ -257,6 +257,7 @@ LINK32_OBJS= \ "$(INTDIR)/screen.obj" \ "$(INTDIR)/search.obj" \ "$(INTDIR)/sha256.obj" \ + "$(INTDIR)/sign.obj" \ "$(INTDIR)/spell.obj" \ "$(INTDIR)/spellfile.obj" \ "$(INTDIR)/syntax.obj" \ @@ -675,6 +676,10 @@ SOURCE=.\sha256.c # End Source File # Begin Source File +SOURCE=.\sign.c +# End Source File +# Begin Source File + SOURCE=.\spell.c # End Source File # Begin Source File |