WebSurf/frontends/framebuffer
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
..
fbtk Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
res move frontends into sub directory 2016-05-15 13:44:34 +01:00
Makefile update framebuffer to have corewindow interface and use it for localhistory 2017-06-10 15:35:36 +01:00
Makefile.defaults update default framebuffer font path 2017-01-02 15:28:58 +00:00
bitmap.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
bitmap.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
clipboard.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
clipboard.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
convert_font.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
convert_image.c move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
corewindow.c Core window: Ensure all front ends initialise drag_status. 2017-06-10 18:10:07 +01:00
corewindow.h Core window: Ensure all front ends initialise drag_status. 2017-06-10 18:10:07 +01:00
fb_search.c move frontends into sub directory 2016-05-15 13:44:34 +01:00
fbtk.h move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
fetch.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
fetch.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
findfile.c move frontends into sub directory 2016-05-15 13:44:34 +01:00
findfile.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
font.h 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 move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
font_internal.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
framebuffer.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
framebuffer.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
gui.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
gui.h update framebuffer to have corewindow interface and use it for localhistory 2017-06-10 15:35:36 +01:00
image_data.h move frontends into sub directory 2016-05-15 13:44:34 +01:00
local_history.c Framebuffer: Ensure local history corewindow is fully initialised. 2017-06-11 09:53:31 +01:00
local_history.h update framebuffer to have corewindow interface and use it for localhistory 2017-06-10 15:35:36 +01:00
options.h 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