netsurf/frontends/atari/plot
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
..
eddi.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
eddi.s move frontends into sub directory 2016-05-15 13:44:34 +01:00
font_freetype.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
font_freetype.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
font_internal.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
font_internal.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
font_vdi.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
font_vdi.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
fontplot.c move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
fontplot.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
plot.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
plot.h clean up incorrect documentation comments from plotter API rework 2017-02-14 23:06:04 +00:00