netsurf/render
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
..
box_construct.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
box_normalise.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
box_textarea.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
box_textarea.h A load of refactoring of how content selection and input work. 2013-02-22 12:19:35 +00:00
box.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
box.h cleanup seevral doxygen warnings 2016-09-13 09:16:31 +01:00
font.c move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
font.h move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
form_internal.h move the public form API 2016-06-14 12:39:54 +01:00
form.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html_css_fetcher.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html_css.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html_forms.c Update content to split public and internal API 2016-06-06 09:01:38 +01:00
html_interaction.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html_internal.h split border drawing out of html redraw 2017-02-11 13:57:06 +00:00
html_object.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html_redraw_border.c split border drawing out of html redraw 2017-02-11 13:57:06 +00:00
html_redraw.c fix some doxygen errors 2017-02-24 14:02:31 +00:00
html_script.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
html.h fix some doxygen errors 2017-02-24 14:02:31 +00:00
imagemap.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
imagemap.h Remove nsurl include. 2015-02-26 17:05:12 +00:00
layout.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
layout.h cleanup seevral doxygen warnings 2016-09-13 09:16:31 +01:00
Makefile split border drawing out of html redraw 2017-02-11 13:57:06 +00:00
search.c Content API: Make content_broadcast take pointer to content_msg_data. 2017-08-26 15:50:03 +01:00
search.h Improve Doxygen documentation 2014-11-08 12:35:11 +00:00
table.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
table.h Merge LibCSS port to trunk. 2009-07-23 23:05:34 +00:00
textplain.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
textplain.h clean up doccomments and formatting in texplain content handler 2017-06-01 22:43:45 +01:00