Indent. Remove unused function. Comment comments.

SVN revision: 9396
This commit is contained in:
Kim Woelders 2004-03-19 00:27:16 +00:00
parent 68ea5e7268
commit e434313aff
9 changed files with 24 additions and 44 deletions

View File

@ -193,12 +193,7 @@ GetContextEwin(void)
if (mode.focuswin)
EDBUG_RETURN(mode.focuswin);
/* FIXME: Is this semicolin supposed to be here in this if statement? */
/* until someone says one way or another its commented out --Mandrake */
/* if (mode.mouse_over_win); */
EDBUG_RETURN(mode.mouse_over_win);
return NULL;
}
void

View File

@ -4107,7 +4107,8 @@ static void
IPC_ShowIcons(char *params, Client * c)
{
/* Doesn't look like this function is doing anything, but it used to
* if I recall correctly --Mandrake */
* if I recall correctly --Mandrake
* If it did anything useful, it was before 0.16.5 /Kim */
return;
params = NULL;
c = NULL;

View File

@ -289,7 +289,8 @@ PagerRefresh(EWin * ewin)
{
/* This doesn't do anything anymore apparently
* --Mandrake
*/
* This is new code.
* It can be removed but I have kept it around, just in case /Kim */
return;
ewin = NULL;
}
@ -409,23 +410,6 @@ PagerDestroy(Pager * p)
Efree(p);
}
#if 0
/*
e Doesn't look like this is ever used, commented out for now
* --Mandrake
*/
static void
PagerOnUnmap(Pager * p)
{
PagerHideHi(p);
if (p == mode.context_pager)
{
mode.context_pager = NULL;
mode.mode = MODE_NONE;
}
}
#endif
Pager **
PagersForDesktop(int d, int *num)
{