diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-25 22:49:46 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-25 22:49:46 +0000 |
commit | ea408854a8360b6925122ce7709b424ab3005209 (patch) | |
tree | 2c5418f82336471cca7110bb10ed76d29f03fcea /src/diff.c | |
parent | 29a1c1d374151aae361dbf39f4b599403fee2e66 (diff) | |
download | vim-git-ea408854a8360b6925122ce7709b424ab3005209.tar.gz |
updated for version 7.0093
Diffstat (limited to 'src/diff.c')
-rw-r--r-- | src/diff.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/diff.c b/src/diff.c index 305e68f41..4acba3df7 100644 --- a/src/diff.c +++ b/src/diff.c @@ -69,7 +69,6 @@ static int diff_check_sanity __ARGS((diff_T *dp)); static void diff_redraw __ARGS((int dofold)); static int diff_write __ARGS((buf_T *buf, char_u *fname)); static void diff_file __ARGS((char_u *tmp_orig, char_u *tmp_new, char_u *tmp_diff)); -static void diff_clear __ARGS((void)); static int diff_equal_entry __ARGS((diff_T *dp, int idx1, int idx2)); static int diff_cmp __ARGS((char_u *s1, char_u *s2)); #ifdef FEAT_FOLDING @@ -1336,7 +1335,7 @@ diff_copy_entry(dprev, dp, idx_orig, idx_new) /* * Clear the list of diffblocks. */ - static void + void diff_clear() { diff_T *p, *next_p; |