diff options
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.18 2009/01/23 19:00:59 okan Exp $ */ +/* $OpenBSD: parse.y,v 1.19 2009/02/07 21:07:00 martynas Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -66,7 +66,7 @@ typedef struct { %token FONTNAME STICKY GAP MOUSEBIND %token AUTOGROUP BIND COMMAND IGNORE -%token YES NO BORDERWIDTH +%token YES NO BORDERWIDTH MOVEAMOUNT %token ERROR %token <v.string> STRING %token <v.number> NUMBER @@ -110,6 +110,9 @@ main : FONTNAME STRING { | BORDERWIDTH NUMBER { conf->bwidth = $2; } + | MOVEAMOUNT NUMBER { + conf->mamount = $2; + } | COMMAND STRING string { conf_cmd_add(conf, $3, $2, 0); free($2); @@ -207,6 +210,7 @@ lookup(char *s) { "gap", GAP}, { "ignore", IGNORE}, { "mousebind", MOUSEBIND}, + { "moveamount", MOVEAMOUNT}, { "no", NO}, { "sticky", STICKY}, { "yes", YES} @@ -499,6 +503,7 @@ parse_config(const char *filename, struct conf *xconf) xconf->flags = conf->flags; xconf->bwidth = conf->bwidth; + xconf->mamount = conf->mamount; while ((cmd = TAILQ_FIRST(&conf->cmdq)) != NULL) { TAILQ_REMOVE(&conf->cmdq, cmd, entry); |