-/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
+/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include "dwm.h"
/* extern */
-Client *
-getnext(Client *c) {
- for(; c && !isvisible(c); c = c->next);
- return c;
-}
-
-Client *
-getprev(Client *c) {
- for(; c && !isvisible(c); c = c->prev);
- return c;
-}
-
void
-initrregs(void) {
+compileregexps(void) {
unsigned int i;
regex_t *reg;
unsigned int i, j;
regmatch_t tmp;
Bool matched = trans != NULL;
- XClassHint ch;
+ XClassHint ch = { 0 };
- if(matched) {
+ if(matched)
for(i = 0; i < ntags; i++)
c->tags[i] = trans->tags[i];
- }
- else if(XGetClassHint(dpy, c->win, &ch)) {
+ else {
+ XGetClassHint(dpy, c->win, &ch);
snprintf(prop, sizeof prop, "%s:%s:%s",
ch.res_class ? ch.res_class : "",
ch.res_name ? ch.res_name : "", c->name);