cvsimport

This commit is contained in:
okan
2013-04-30 21:12:20 +00:00
9 changed files with 65 additions and 56 deletions

View File

@@ -139,16 +139,11 @@ main : FONTNAME STRING {
YYERROR;
}
group_make_autogroup(conf, $3, $2);
conf_autogroup(conf, $2, $3);
free($3);
}
| IGNORE STRING {
struct winmatch *wm;
wm = xcalloc(1, sizeof(*wm));
(void)strlcpy(wm->title, $2, sizeof(wm->title));
TAILQ_INSERT_TAIL(&conf->ignoreq, wm, entry);
conf_ignore(conf, $2);
free($2);
}
| BIND STRING string {