diff -r f1ec35606dbc -r 5a4fd8fec414 client.c --- a/client.c Thu Feb 22 15:25:19 2007 +0100 +++ b/client.c Thu Feb 22 17:43:41 2007 +0100 @@ -203,8 +203,8 @@ updatetitle(c); for(t = clients; t && t->win != trans; t = t->next); settags(c, t); - if(!c->isversatile) - c->isversatile = (t != NULL) || c->isfixed; + if(!c->isuntiled) + c->isuntiled = (t != NULL) || c->isfixed; attach(c); attachstack(c); c->isbanned = True; @@ -285,10 +285,10 @@ } void -toggleversatile(const char *arg) { - if(!sel || lt->arrange == versatile) +toggletiled(const char *arg) { + if(!sel || lt->arrange == untile) return; - sel->isversatile = !sel->isversatile; + sel->isuntiled = !sel->isuntiled; lt->arrange(); }