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 /Filelist | |
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 'Filelist')
-rw-r--r-- | Filelist | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -81,10 +81,11 @@ SRC_ALL = \ src/screen.c \ src/search.c \ src/sha256.c \ - src/structs.h \ + src/sign.c \ src/spell.c \ src/spell.h \ src/spellfile.c \ + src/structs.h \ src/syntax.c \ src/tag.c \ src/term.c \ @@ -192,6 +193,7 @@ SRC_ALL = \ src/proto/screen.pro \ src/proto/search.pro \ src/proto/sha256.pro \ + src/proto/sign.pro \ src/proto/spell.pro \ src/proto/spellfile.pro \ src/proto/syntax.pro \ |