diff options
| -rw-r--r-- | config.arg.h | 4 | ||||
| -rw-r--r-- | config.default.h | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/config.arg.h b/config.arg.h index dc751f0..0c39d3b 100644 --- a/config.arg.h +++ b/config.arg.h @@ -57,10 +57,10 @@ static Key key[] = { \  };  #define RULES \ -	const unsigned int tag2[] = { 2 }; \ +	const unsigned int two[] = { 2 }; \  static Rule rule[] = { \  	/* class:instance	tags		isfloat */ \ -	{ "Firefox.*",		tag2,		False }, \ +	{ "Firefox.*",		two,		False }, \  	{ "Gimp.*",		NULL,		True}, \  	{ "MPlayer.*",		NULL,		True}, \  	{ "Acroread.*",		NULL,		True}, \ diff --git a/config.default.h b/config.default.h index 9eaef03..14f33ec 100644 --- a/config.default.h +++ b/config.default.h @@ -48,9 +48,9 @@ static Key key[] = { \  };  #define RULES \ -	const unsigned int tag2[] = { 2 }; \ +	const unsigned int two[] = { 2 }; \  static Rule rule[] = { \  	/* class:instance	tags		isfloat */ \ -	{ "Firefox.*",		tag2,	False }, \ +	{ "Firefox.*",		two,	False }, \  	{ "Gimp.*",		NULL,		True}, \  }; | 
