netsurf/frontends/monkey
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
..
401login.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
401login.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
bitmap.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
bitmap.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
browser.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
browser.h Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
cert.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
cert.h Allow certificate verification user prompt creation to return errors 2016-07-31 13:25:20 +01:00
dispatch.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
dispatch.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
download.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
farmer.py Initial monkey farmer example, needs to be genericised 2017-06-10 12:54:57 +01:00
fetch.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
fetch.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
filetype.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
filetype.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
layout.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
layout.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
main.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
Makefile move frontends into sub directory 2016-05-15 13:44:34 +01:00
Makefile.defaults move frontends into sub directory 2016-05-15 13:44:34 +01:00
options.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
plot.c Reflow monkey code, it was annoying me too much 2017-06-10 12:54:57 +01:00
plot.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
res move frontends into sub directory 2016-05-15 13:44:34 +01:00
schedule.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
schedule.h move frontends into sub directory 2016-05-15 13:44:34 +01:00