diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-05-14 20:20:33 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-05-14 20:20:33 +0000 |
commit | 0c094b9d7f8a031e2cb495551ecc13e34cfa5818 (patch) | |
tree | 660d6095585ed5291454a77e6246ec4ecbc71fe6 /src/diff.c | |
parent | d30f9d92c4e03fd1a132e3440253eb92b5c7b3e4 (diff) | |
download | vim-git-0c094b9d7f8a031e2cb495551ecc13e34cfa5818.tar.gz |
updated for version 7.2-173v7.2.173
Diffstat (limited to 'src/diff.c')
-rw-r--r-- | src/diff.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/diff.c b/src/diff.c index b7f0a1015..9537a65d7 100644 --- a/src/diff.c +++ b/src/diff.c @@ -652,10 +652,9 @@ diff_write(buf, fname) * The buffers are written to a file, also for unmodified buffers (the file * could have been produced by autocommands, e.g. the netrw plugin). */ -/*ARGSUSED*/ void ex_diffupdate(eap) - exarg_T *eap; /* can be NULL, it's not used */ + exarg_T *eap UNUSED; /* can be NULL */ { buf_T *buf; int idx_orig; @@ -1094,10 +1093,9 @@ ex_diffsplit(eap) /* * Set options to show difs for the current window. */ -/*ARGSUSED*/ void ex_diffthis(eap) - exarg_T *eap; + exarg_T *eap UNUSED; { /* Set 'diff', 'scrollbind' on and 'wrap' off. */ diff_win_options(curwin, TRUE); |