More formatting updates. Reduced whitespace, looks even better.

This commit is contained in:
William Ferrell
2000-03-30 20:43:33 +00:00
parent a98c8109a8
commit ddfd41f53e
78 changed files with 0 additions and 590 deletions
-5
View File
@@ -12,7 +12,6 @@
#include "screenlist.h"
#include "screen.h"
screen *
screen_create ()
{
@@ -60,7 +59,6 @@ screen_destroy (screen * s)
} while (LL_Next (s->widgets) == 0);
LL_Destroy (s->widgets);
if (s->id)
free (s->id);
if (s->name)
@@ -71,7 +69,6 @@ screen_destroy (screen * s)
return 0;
}
screen *
screen_find (client * c, char *id)
{
@@ -96,7 +93,6 @@ screen_find (client * c, char *id)
return NULL;
}
int
screen_add (client * c, char *id)
{
@@ -129,7 +125,6 @@ screen_add (client * c, char *id)
// TODO: Check for errors here?
LL_Push (c->data->screenlist, (void *) s);
// Now, add it to the screenlist...
if (screenlist_add (s) < 0) {
fprintf (stderr, "screen_add: Error queueing new screen\n");