WebSurf/frontends
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
..
amiga Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
atari Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
beos Fix bug 0002555: "No GC" alert when resizing the window 2017-08-21 02:29:58 +02:00
framebuffer Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
gtk Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
monkey Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
riscos Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
windows Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
Makefile Allow include directories to be added by sub makefiles 2016-06-06 14:47:27 +01:00