simplifying regexps in config samples 3.5
authorAnselm R. Garbe <arg@suckless.org>
Wed, 14 Feb 2007 09:31:23 +0100
changeset 758 63ad05e7f9e1
parent 757 22dfaeb82491
child 759 6365c9425b48
simplifying regexps in config samples
config.arg.h
config.default.h
--- a/config.arg.h	Wed Feb 14 09:09:18 2007 +0100
+++ b/config.arg.h	Wed Feb 14 09:31:23 2007 +0100
@@ -87,8 +87,8 @@
 #define RULES \
 static Rule rule[] = { \
 	/* class:instance:title regex	tags regex	isfloat */ \
-	{ "Firefox.*",			"3",		False }, \
-	{ "Gimp.*",			NULL,		True }, \
-	{ "MPlayer.*",			NULL,		True }, \
-	{ "Acroread.*",			NULL,		True }, \
+	{ "Firefox",			"3",		False }, \
+	{ "Gimp",			NULL,		True }, \
+	{ "MPlayer",			NULL,		True }, \
+	{ "Acroread",			NULL,		True }, \
 };
--- a/config.default.h	Wed Feb 14 09:09:18 2007 +0100
+++ b/config.default.h	Wed Feb 14 09:31:23 2007 +0100
@@ -84,7 +84,7 @@
 #define RULES \
 static Rule rule[] = { \
 	/* class:instance:title regex	tags regex	isfloat */ \
-	{ "Gimp.*",			NULL,		True }, \
-	{ "MPlayer.*",			NULL,		True }, \
-	{ "Acroread.*",			NULL,		True }, \
+	{ "Gimp",			NULL,		True }, \
+	{ "MPlayer",			NULL,		True }, \
+	{ "Acroread",			NULL,		True }, \
 };