fixed two comments

This commit is contained in:
arg@suckless.org 2007-10-18 17:02:19 +02:00
parent cd7ebaad25
commit af0034f3a5
1 changed files with 3 additions and 1 deletions

4
dwm.c
View File

@ -111,7 +111,7 @@ typedef struct {
regex_t *tagregex;
} Regs;
/* functions */
/* function declarations */
void applyrules(Client *c);
void arrange(void);
void attach(Client *c);
@ -236,6 +236,8 @@ Regs *regs = NULL;
unsigned int ntags = sizeof tags / sizeof tags[0];
Bool seltags[sizeof tags / sizeof tags[0]] = {[0] = True};
Bool prevtags[sizeof tags / sizeof tags[0]] = {[0] = True};
/* function implementations */
void
applyrules(Client *c) {
static char buf[512];