diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-02-13 23:13:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-02-13 23:13:28 +0100 |
commit | 5fd0f5052f9a312bb4cfe7b4176b1211d45127ee (patch) | |
tree | b82e59bfdcf65662e44803dabbfa77c11010bb70 /src/README.txt | |
parent | 688b3983d8b321e0d32dd51914fa474a0988daf6 (diff) | |
download | vim-git-5fd0f5052f9a312bb4cfe7b4176b1211d45127ee.tar.gz |
patch 8.1.0914: code related to findfile() is spread outv8.1.0914
Problem: Code related to findfile() is spread out.
Solution: Put findfile() related code into a new source file. (Yegappan
Lakshmanan, closes #3934)
Diffstat (limited to 'src/README.txt')
-rw-r--r-- | src/README.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/README.txt b/src/README.txt index e1dc36f69..52edeb73e 100644 --- a/src/README.txt +++ b/src/README.txt @@ -22,8 +22,10 @@ Most code can be found in a file with an obvious name (incomplete list): diff.c diff mode (vimdiff) eval.c expression evaluation fileio.c reading and writing files + findfile.c search for files in 'path' fold.c folding getchar.c getting characters and key mapping + indent.c C and Lisp indentation mark.c marks mbyte.c multi-byte character handling memfile.c storing lines for buffers in a swapfile |