]> git.sur5r.net Git - i3/i3/blobdiff - src/regex.c
Update copyright notices and get rid of ranges
[i3/i3] / src / regex.c
index 64a2f3a4ffd4fd7a5cd73ad3a0037f37c714a2bc..9549a98b54ba36980fe956b8957e63d4e21f1c6b 100644 (file)
@@ -1,12 +1,14 @@
+#undef I3__FILE__
+#define I3__FILE__ "regex.c"
 /*
  * vim:ts=4:sw=4:expandtab
  *
  * i3 - an improved dynamic tiling window manager
- * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
  *
+ * regex.c: Interface to libPCRE (perl compatible regular expressions).
  *
  */
-
 #include "all.h"
 
 /*
@@ -67,7 +69,7 @@ void regex_free(struct regex *regex) {
 /*
  * Checks if the given regular expression matches the given input and returns
  * true if it does. In either case, it logs the outcome using LOG(), so it will
- * be visible without any debug loglevel.
+ * be visible without debug logging.
  *
  */
 bool regex_matches(struct regex *regex, const char *input) {