Hi, On Tue, 20 Jan 2009, Boyd Stephen Smith Jr. wrote: > diff --git a/userdiff.c b/userdiff.c > index 2b55509..d556da9 100644 > --- a/userdiff.c > +++ b/userdiff.c > @@ -6,8 +6,8 @@ static struct userdiff_driver *drivers; > static int ndrivers; > static int drivers_alloc; > > -#define PATTERNS(name, pattern, wordregex) \ > - { name, NULL, -1, { pattern, REG_EXTENDED }, wordregex } > +#define PATTERNS(name, pattern, word_regex) \ > + { name, NULL, -1, { pattern, REG_EXTENDED }, word_regex } > static struct userdiff_driver builtin_drivers[] = { > PATTERNS("html", "^[ \t]*(<[Hh][1-6][ \t].*>.*)$", > "[^<>= \t]+|[^[:space:]]|[\x80-\xff]+"), In general, it is an awesomly good idea to imitate code that is already there. That literally guarantees consistency (which is Good, as you know). And Thomas just imitated "xfuncname", which just so happens to be without an "_". Ciao, Dscho -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html