netsurf/content/handlers/css
Vincent Sanders 75018632a9 Use coccinelle to change logging macro calls in c files
for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done

@@ expression E; @@
-LOG(E);
+NSLOG(netsurf, INFO, E);
@@ expression E, E1; @@
-LOG(E, E1);
+NSLOG(netsurf, INFO, E, E1);
@@ expression E, E1, E2; @@
-LOG(E, E1, E2);
+NSLOG(netsurf, INFO, E, E1, E2);
@@ expression E, E1, E2, E3; @@
-LOG(E, E1, E2, E3);
+NSLOG(netsurf, INFO, E, E1, E2, E3);
@@ expression E, E1, E2, E3, E4; @@
-LOG(E, E1, E2, E3, E4);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4);
@@ expression E, E1, E2, E3, E4, E5; @@
-LOG(E, E1, E2, E3, E4, E5);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5);
@@ expression E, E1, E2, E3, E4, E5, E6; @@
-LOG(E, E1, E2, E3, E4, E5, E6);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6);
@@ expression E, E1, E2, E3, E4, E5, E6, E7; @@
-LOG(E, E1, E2, E3, E4, E5, E6, E7);
+NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
2017-09-06 18:45:27 +01:00
..
css.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
css.h move the CSS content handler 2016-05-26 11:18:41 +01:00
dump.c Allow include directories to be added by sub makefiles 2016-06-06 14:47:27 +01:00
dump.h move the CSS content handler 2016-05-26 11:18:41 +01:00
hints.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
hints.h fix spelling of retrived 2016-11-21 00:07:13 +00:00
internal.c Allow include directories to be added by sub makefiles 2016-06-06 14:47:27 +01:00
internal.h move the CSS content handler 2016-05-26 11:18:41 +01:00
Makefile move the CSS content handler 2016-05-26 11:18:41 +01:00
select.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
select.h move the CSS content handler 2016-05-26 11:18:41 +01:00
utils.c Allow include directories to be added by sub makefiles 2016-06-06 14:47:27 +01:00
utils.h move the CSS content handler 2016-05-26 11:18:41 +01:00