diff options
Diffstat (limited to 'src/diff.c')
| -rw-r--r-- | src/diff.c | 21 | 
1 files changed, 20 insertions, 1 deletions
| diff --git a/src/diff.c b/src/diff.c index 166b40ee0c..626271a7b5 100644 --- a/src/diff.c +++ b/src/diff.c @@ -12,9 +12,28 @@   */  #include "vim.h" +#include "diff.h" +#include "buffer.h" +#include "charset.h" +#include "eval.h" +#include "ex_cmds.h" +#include "ex_docmd.h" +#include "fileio.h" +#include "fold.h" +#include "mark.h" +#include "mbyte.h" +#include "memline.h" +#include "message.h" +#include "misc1.h" +#include "misc2.h" +#include "move.h" +#include "normal.h" +#include "option.h" +#include "screen.h" +#include "undo.h" +#include "window.h"  #include "os/os.h" -  static int diff_busy = FALSE;           /* ex_diffgetput() is busy */  /* flags obtained from the 'diffopt' option */ | 
