commenting unused funcs to avoid build warnings
This commit is contained in:
parent
96620c7da0
commit
c4b0eb74d0
1 changed files with 66 additions and 66 deletions
132
vanitygaps.c
132
vanitygaps.c
|
@ -1,12 +1,12 @@
|
||||||
/* Key binding functions */
|
/* Key binding functions */
|
||||||
static void defaultgaps(const Arg *arg);
|
static void defaultgaps(const Arg *arg);
|
||||||
static void incrgaps(const Arg *arg);
|
static void incrgaps(const Arg *arg);
|
||||||
static void incrigaps(const Arg *arg);
|
/* static void incrigaps(const Arg *arg); */
|
||||||
static void incrogaps(const Arg *arg);
|
/* static void incrogaps(const Arg *arg); */
|
||||||
static void incrohgaps(const Arg *arg);
|
/* static void incrohgaps(const Arg *arg); */
|
||||||
static void incrovgaps(const Arg *arg);
|
/* static void incrovgaps(const Arg *arg); */
|
||||||
static void incrihgaps(const Arg *arg);
|
/* static void incrihgaps(const Arg *arg); */
|
||||||
static void incrivgaps(const Arg *arg);
|
/* static void incrivgaps(const Arg *arg); */
|
||||||
static void togglegaps(const Arg *arg);
|
static void togglegaps(const Arg *arg);
|
||||||
|
|
||||||
/* Layouts */
|
/* Layouts */
|
||||||
|
@ -65,71 +65,71 @@ incrgaps(const Arg *arg)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
/* static void */
|
||||||
incrigaps(const Arg *arg)
|
/* incrigaps(const Arg *arg) */
|
||||||
{
|
/* { */
|
||||||
setgaps(
|
/* setgaps( */
|
||||||
selmon->gappoh,
|
/* selmon->gappoh, */
|
||||||
selmon->gappov,
|
/* selmon->gappov, */
|
||||||
selmon->gappih + arg->i,
|
/* selmon->gappih + arg->i, */
|
||||||
selmon->gappiv + arg->i
|
/* selmon->gappiv + arg->i */
|
||||||
);
|
/* ); */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
static void
|
/* static void */
|
||||||
incrogaps(const Arg *arg)
|
/* incrogaps(const Arg *arg) */
|
||||||
{
|
/* { */
|
||||||
setgaps(
|
/* setgaps( */
|
||||||
selmon->gappoh + arg->i,
|
/* selmon->gappoh + arg->i, */
|
||||||
selmon->gappov + arg->i,
|
/* selmon->gappov + arg->i, */
|
||||||
selmon->gappih,
|
/* selmon->gappih, */
|
||||||
selmon->gappiv
|
/* selmon->gappiv */
|
||||||
);
|
/* ); */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
static void
|
/* static void */
|
||||||
incrohgaps(const Arg *arg)
|
/* incrohgaps(const Arg *arg) */
|
||||||
{
|
/* { */
|
||||||
setgaps(
|
/* setgaps( */
|
||||||
selmon->gappoh + arg->i,
|
/* selmon->gappoh + arg->i, */
|
||||||
selmon->gappov,
|
/* selmon->gappov, */
|
||||||
selmon->gappih,
|
/* selmon->gappih, */
|
||||||
selmon->gappiv
|
/* selmon->gappiv */
|
||||||
);
|
/* ); */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
static void
|
/* static void */
|
||||||
incrovgaps(const Arg *arg)
|
/* incrovgaps(const Arg *arg) */
|
||||||
{
|
/* { */
|
||||||
setgaps(
|
/* setgaps( */
|
||||||
selmon->gappoh,
|
/* selmon->gappoh, */
|
||||||
selmon->gappov + arg->i,
|
/* selmon->gappov + arg->i, */
|
||||||
selmon->gappih,
|
/* selmon->gappih, */
|
||||||
selmon->gappiv
|
/* selmon->gappiv */
|
||||||
);
|
/* ); */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
static void
|
/* static void */
|
||||||
incrihgaps(const Arg *arg)
|
/* incrihgaps(const Arg *arg) */
|
||||||
{
|
/* { */
|
||||||
setgaps(
|
/* setgaps( */
|
||||||
selmon->gappoh,
|
/* selmon->gappoh, */
|
||||||
selmon->gappov,
|
/* selmon->gappov, */
|
||||||
selmon->gappih + arg->i,
|
/* selmon->gappih + arg->i, */
|
||||||
selmon->gappiv
|
/* selmon->gappiv */
|
||||||
);
|
/* ); */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
static void
|
/* static void */
|
||||||
incrivgaps(const Arg *arg)
|
/* incrivgaps(const Arg *arg) */
|
||||||
{
|
/* { */
|
||||||
setgaps(
|
/* setgaps( */
|
||||||
selmon->gappoh,
|
/* selmon->gappoh, */
|
||||||
selmon->gappov,
|
/* selmon->gappov, */
|
||||||
selmon->gappih,
|
/* selmon->gappih, */
|
||||||
selmon->gappiv + arg->i
|
/* selmon->gappiv + arg->i */
|
||||||
);
|
/* ); */
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
getgaps(Monitor *m, int *oh, int *ov, int *ih, int *iv, unsigned int *nc)
|
getgaps(Monitor *m, int *oh, int *ov, int *ih, int *iv, unsigned int *nc)
|
||||||
|
|
Loading…
Reference in a new issue