aewl

changeset 326:73efaa15a635

removed DEFTAG
author Anselm R. Garbe <arg@10kloc.org>
date Tue, 22 Aug 2006 16:42:29 +0200
parents 58c09c533d3f
children 96d09fd98e89
files config.arg.h config.default.h main.c
diffstat 3 files changed, 2 insertions(+), 4 deletions(-) [+]
line diff
     1.1 --- a/config.arg.h	Tue Aug 22 16:06:11 2006 +0200
     1.2 +++ b/config.arg.h	Tue Aug 22 16:42:29 2006 +0200
     1.3 @@ -7,7 +7,6 @@
     1.4  const char *tags[] = { "work", "net", "fnord", NULL };
     1.5  
     1.6  #define DEFMODE			dotile /* dofloat */
     1.7 -#define DEFTAG			0 /* index */
     1.8  #define TFONT			"-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
     1.9  #define FONT			"-*-snap-*-*-*-*-*-*-*-*-*-*-*-*"
    1.10  #define BGCOLOR			"#0d121d"
     2.1 --- a/config.default.h	Tue Aug 22 16:06:11 2006 +0200
     2.2 +++ b/config.default.h	Tue Aug 22 16:42:29 2006 +0200
     2.3 @@ -4,10 +4,9 @@
     2.4   */
     2.5  
     2.6  #define TAGS \
     2.7 -const char *tags[] = { "0", "1", "2", "3", "4", NULL };
     2.8 +const char *tags[] = { "1", "2", "3", "4", "0", NULL };
     2.9  
    2.10  #define DEFMODE			dotile /* dofloat */
    2.11 -#define DEFTAG			1 /* index */
    2.12  #define FONT			"fixed"
    2.13  #define BGCOLOR			"#666699"
    2.14  #define FGCOLOR			"#eeeeee"
     3.1 --- a/main.c	Tue Aug 22 16:06:11 2006 +0200
     3.2 +++ b/main.c	Tue Aug 22 16:42:29 2006 +0200
     3.3 @@ -241,7 +241,7 @@
     3.4  
     3.5  	for(ntags = 0; tags[ntags]; ntags++);
     3.6  	seltag = emallocz(sizeof(Bool) * ntags);
     3.7 -	seltag[DEFTAG] = True;
     3.8 +	seltag[0] = True;
     3.9  
    3.10  	/* style */
    3.11  	dc.bg = getcolor(BGCOLOR);