aboutsummaryrefslogtreecommitdiffstats
path: root/layout.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-08-13 20:06:00 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-08-13 20:06:00 +0200
commit9e56e1ded6889335035c8ffbe2763d3d83978673 (patch)
tree06e7392ce4c3056e2c28ba76452946089fd9cc6b /layout.c
parente4ad3205995865f53b806a912bc7beb44fb90598 (diff)
downloaddwm-9e56e1ded6889335035c8ffbe2763d3d83978673.tar.zst
tags should be persistent now during X server run
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/layout.c b/layout.c
index a660fd7..4fb0be3 100644
--- a/layout.c
+++ b/layout.c
@@ -2,6 +2,8 @@
#include "dwm.h"
#include <stdlib.h>
+/* static */
+
typedef struct {
const char *symbol;
void (*arrange)(void);
@@ -10,10 +12,8 @@ typedef struct {
unsigned int blw = 0;
static Layout *lt = NULL;
-/* static */
-
static void
-floating(void) {
+floating(void) { /* default floating layout */
Client *c;
for(c = clients; c; c = c->next)