More formatting updates. Reduced whitespace, looks even better.
This commit is contained in:
@@ -8,15 +8,12 @@
|
||||
#include "screen.h"
|
||||
#include "clients.h"
|
||||
|
||||
|
||||
|
||||
int screenlist_action = 0;
|
||||
|
||||
int timer = 0;
|
||||
|
||||
LL *screenlist;
|
||||
|
||||
|
||||
int screenlist_add_end (screen * screen);
|
||||
screen *screenlist_next_roll ();
|
||||
screen *screenlist_prev_roll ();
|
||||
@@ -25,7 +22,6 @@ screen *screenlist_next_priority ();
|
||||
int compare_priority (void *one, void *two);
|
||||
int compare_addresses (void *one, void *two);
|
||||
|
||||
|
||||
int
|
||||
screenlist_init ()
|
||||
{
|
||||
@@ -95,11 +91,9 @@ screenlist_current ()
|
||||
static screen *old_s = NULL;
|
||||
client *c;
|
||||
|
||||
|
||||
//debug("screenlist_current:\n");
|
||||
//LL_dprint(screenlist);
|
||||
|
||||
|
||||
s = (screen *) LL_GetFirst (screenlist);
|
||||
|
||||
// FIXME: Make sure the screen/client exists!
|
||||
@@ -139,8 +133,6 @@ screenlist_current ()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
old_s = s;
|
||||
|
||||
//debug("screenlist_current: return %8x\n", s);
|
||||
@@ -173,7 +165,6 @@ screenlist_next ()
|
||||
// Otherwise, reset it to regular operation
|
||||
screenlist_action = 0;
|
||||
|
||||
|
||||
//debug("Screenlist_next: calling handler...\n");
|
||||
|
||||
// Call the selected queuing function...
|
||||
@@ -202,7 +193,6 @@ screenlist_prev ()
|
||||
// Otherwise, reset it no regular operation
|
||||
screenlist_action = 0;
|
||||
|
||||
|
||||
// Call the selected queuing function...
|
||||
// TODO: Different queueing modes...
|
||||
s = screenlist_prev_roll ();
|
||||
@@ -210,7 +200,6 @@ screenlist_prev ()
|
||||
return s;
|
||||
}
|
||||
|
||||
|
||||
// Adds new screens to the end of the screenlist...
|
||||
int
|
||||
screenlist_add_end (screen * screen)
|
||||
@@ -259,7 +248,6 @@ screenlist_prev_roll ()
|
||||
return screenlist_current ();
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
compare_priority (void *one, void *two)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user