* added CFLAGS to Makefile (patch by VMiklos)
* added '&' and '~' to list of nick prefix (patch by VMiklos)
 Change log file for irssistats
 
+version 0.74   (2007-09-20)
+       * added CFLAGS to Makefile (patch by VMiklos)
+       * added '&' and '~' to list of nick prefix (patch by VMiklos)
+
 version 0.73   (2007-05-20)
        * added last weeks and last months options (suggested by Gouki)
        * fixed theme option when generating output
 
 DAT = $(PRE)/share/irssistats/data
 DOC = $(PRE)/share/doc/irssistats
 MAN = $(PRE)/share/man/man1
+CFLAGS ?= -O2
 
 irssistats:irssistats.c
-       gcc -O2 -o irssistats irssistats.c
+       gcc $(CFLAGS) -o irssistats irssistats.c
 
 clean:
        rm -f irssistats
 
-irssistats 0.73
+irssistats 0.74
 site: http://royale.zerezo.com/irssistats/
 mail: royale@zerezo.com
 
 
 /*
- * irssistats version 0.73
+ * irssistats version 0.74
  *
  * This tool generates IRC stats based on irssi logs.
  * Usage: irssistats [/path/to/file.conf]
 #define MINWORDLENGTH 5
 
 /* irssistats */
-#define VERSION "0.73"
+#define VERSION "0.74"
 #define URL "http://royale.zerezo.com/irssistats/"
 
 /* Counters */
             case '@':
             case '%':
             case '+':
+            case '&':
+            case '~':
             case ' ': 
               nickstart = timelen+2; 
               break;