]> git.sur5r.net Git - i3/i3/blobdiff - src/regex.c
Merge branch 'master' into next
[i3/i3] / src / regex.c
index 64a2f3a4ffd4fd7a5cd73ad3a0037f37c714a2bc..60dee5cc92a24d57e42eddefb78a7436a3ed728b 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)
  *
+ * 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) {