netsurf/frontends/riscos/gui
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
..
button_bar.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
button_bar.h Update RISC OS global history to use core window interface 2016-12-28 15:26:02 +00:00
progress_bar.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
progress_bar.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
status_bar.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
status_bar.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
throbber.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
throbber.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
url_bar.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
url_bar.h Update RISC OS cookie window to use core window interface 2016-12-28 15:25:57 +00:00