diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-02-28 02:54:47 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-28 18:37:01 -0300 |
commit | e18c075b703f85a6b30866851a02b682debf041e (patch) | |
tree | ae5739cfe94f9ea436b4cdccb9c19268545f4ad1 /src/eval.c | |
parent | 007a19c4971e42d1bb7fdafc8fc7d6d8885120f2 (diff) | |
download | rneovim-e18c075b703f85a6b30866851a02b682debf041e.tar.gz rneovim-e18c075b703f85a6b30866851a02b682debf041e.tar.bz2 rneovim-e18c075b703f85a6b30866851a02b682debf041e.zip |
Extract file_search.c from misc2.c
Continue to split misc2.c in many other files (see #209).
The only changed I made to the moved code was adding
`vim_free(ff_expand_buffer)` to `free_finfile()`. This is was needed
because `ff_expand_buffer` was moved from `misc2.c` to `file_search.c`.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 7c54513e00..5b8c43fc8d 100644 --- a/src/eval.c +++ b/src/eval.c @@ -33,6 +33,7 @@ #include "message.h" #include "misc1.h" #include "misc2.h" +#include "file_search.h" #include "garray.h" #include "move.h" #include "normal.h" |