summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-21 21:27:43 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-21 21:27:43 +0000
commit4bdbbf706634d8ab4b84801f0a30fd4eacbc901c (patch)
tree6a02da9fb455ef18bdcf4fdcf7ce56555018ac83 /src/window.c
parent32f31b1a0ff304c10136ae9b49bb15981e8bb935 (diff)
downloadvim-git-4bdbbf706634d8ab4b84801f0a30fd4eacbc901c.tar.gz
updated for version 7.2-184v7.2.184
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/window.c b/src/window.c
index 81caee932..427fd1f35 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1163,12 +1163,11 @@ win_split_ins(size, flags, newwin, dir)
* WSP_NEWLOC may be specified in flags to prevent the location list from
* being copied.
*/
-/*ARGSUSED*/
static void
win_init(newp, oldp, flags)
win_T *newp;
win_T *oldp;
- int flags;
+ int flags UNUSED;
{
int i;
@@ -1268,11 +1267,10 @@ win_count()
* Must be called when there is just one window, filling the whole screen
* (excluding the command line).
*/
-/*ARGSUSED*/
int
make_windows(count, vertical)
int count;
- int vertical; /* split windows vertically if TRUE */
+ int vertical UNUSED; /* split windows vertically if TRUE */
{
int maxcount;
int todo;
@@ -2353,11 +2351,10 @@ win_free_all()
* Remove a window and its frame from the tree of frames.
* Returns a pointer to the window that got the freed up space.
*/
-/*ARGSUSED*/
static win_T *
winframe_remove(win, dirp, tp)
win_T *win;
- int *dirp; /* set to 'v' or 'h' for direction if 'ea' */
+ int *dirp UNUSED; /* set to 'v' or 'h' for direction if 'ea' */
tabpage_T *tp; /* tab page "win" is in, NULL for current */
{
frame_T *frp, *frp2, *frp3;
@@ -3500,10 +3497,9 @@ tabpage_index(ftp)
* FAIL.
* Careful: When OK is returned need to get a new tab page very very soon!
*/
-/*ARGSUSED*/
static int
leave_tabpage(new_curbuf)
- buf_T *new_curbuf; /* what is going to be the new curbuf,
+ buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf,
NULL if unknown */
{
tabpage_T *tp = curtab;
@@ -3545,11 +3541,10 @@ leave_tabpage(new_curbuf)
* Start using tab page "tp".
* Only to be used after leave_tabpage() or freeing the current tab page.
*/
-/*ARGSUSED*/
static void
enter_tabpage(tp, old_curbuf)
tabpage_T *tp;
- buf_T *old_curbuf;
+ buf_T *old_curbuf UNUSED;
{
int old_off = tp->tp_firstwin->w_winrow;
win_T *next_prevwin = tp->tp_prevwin;
@@ -4157,10 +4152,9 @@ buf_jump_open_tab(buf)
/*
* allocate a window structure and link it in the window list
*/
-/*ARGSUSED*/
static win_T *
win_alloc(after)
- win_T *after;
+ win_T *after UNUSED;
{
win_T *newwin;