diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-25 15:41:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-25 15:41:00 +0200 |
commit | 307c5a5bb77c3728dfab06c30e9f786309c63f74 (patch) | |
tree | f178edf16af0642f2a1236a41984db6f660727df /src/proto.h | |
parent | c2b97643a82bb9fbd202312dac4aa995f92e9e5b (diff) | |
download | vim-git-307c5a5bb77c3728dfab06c30e9f786309c63f74.tar.gz |
patch 8.1.1927: code for dealing with script files is spread outv8.1.1927
Problem: Code for dealing with script files is spread out.
Solution: Move the code to scriptfile.c. (Yegappan Lakshmanan, closes #4861)
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index 3b6d1acd1..10c8ff573 100644 --- a/src/proto.h +++ b/src/proto.h @@ -184,6 +184,7 @@ void qsort(void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void # include "quickfix.pro" # endif # include "regexp.pro" +# include "scriptfile.pro" # include "screen.pro" # include "session.pro" # if defined(FEAT_CRYPT) || defined(FEAT_PERSISTENT_UNDO) |