netsurf/desktop
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
..
browser_history.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
browser_history.h Split local history data from viewer in headers 2017-06-10 18:37:21 +01:00
browser_private.h remove depricated local history display API 2017-06-11 14:54:33 +01:00
browser.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
cookie_manager.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
cookie_manager.h Fix cookie manager keypress consumption return 2016-07-31 13:25:20 +01:00
download.c move download header into public API 2016-05-30 11:15:58 +01:00
download.h fix nsurl references 2014-05-08 18:03:27 +01:00
font_haru.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
font_haru.h move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
frame_types.h move desktop window header into public API 2016-05-30 17:32:57 +01:00
frames.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
frames.h move desktop window header into public API 2016-05-30 17:32:57 +01:00
global_history.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
global_history.h fix global history keypress consumption return 2016-08-04 23:40:34 +01:00
gui_factory.c simplify the browser window operations by removing scroll API 2017-04-26 20:48:54 +01:00
gui_internal.h Split up graphical user interface operations table headers 2014-10-16 22:33:43 +01:00
gui_table.h split out the layout glyph sizing and splitting API 2016-04-23 23:32:21 +01:00
hotlist.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
hotlist.h Core hotlist: Improve hotlist_init documentation. 2017-04-28 12:09:58 +01:00
knockout.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
knockout.h Update knockout plotter to use new API 2017-02-11 13:57:06 +00:00
local_history.c fix resource leak on error in local history initialisation 2017-06-12 22:58:43 +01:00
local_history.h remove depricated local history display API 2017-06-11 14:54:33 +01:00
Makefile add local history corewindow API 2017-02-17 09:06:25 +00:00
mouse.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
netsurf.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
options.h move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
plot_style.c move plot style header to netsurf include directory 2017-01-13 10:03:24 +00:00
print.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
print.h fix build 2017-02-14 17:24:49 +00:00
printer.h cleanup printer API usage of plotter headers 2016-05-04 15:43:43 +01:00
save_complete.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
save_complete.h Port save complete to libdom. 2012-11-03 23:19:45 +00:00
save_pdf.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
save_pdf.h improve error returns from pdf save API 2016-04-26 11:02:17 +01:00
save_text.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
save_text.h Merge jmb/new-cache; r=dsilvers,rs=vince 2010-03-28 12:56:39 +00:00
scrollbar.c make scrollbar redraw signal errors correctly 2017-03-01 23:30:29 +00:00
scrollbar.h cleanup use of internal frames scrollbar widget header 2017-06-11 11:46:50 +01:00
search.c move page search gui callbacks to their own operations table 2014-03-18 22:32:52 +00:00
search.h fix up more doxygen errors 2014-11-08 16:49:32 +00:00
searchweb.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
searchweb.h fix warning 2014-11-22 16:39:31 +00:00
selection.c move the public form API 2016-06-14 12:39:54 +01:00
selection.h move mouse and pointer state header into public API 2016-05-30 12:10:08 +01:00
sslcert_viewer.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
sslcert_viewer.h improve documentation comments in ssl certificate viewer 2017-03-01 23:47:27 +00:00
system_colour.c Change interface to system colours to allow reporting of errors 2017-03-01 12:50:30 +00:00
system_colour.h Change interface to system colours to allow reporting of errors 2017-03-01 12:50:30 +00:00
textarea.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
textarea.h Change interface to system colours to allow reporting of errors 2017-03-01 12:50:30 +00:00
textinput.c move key press enums and operations to their own header 2016-07-01 14:27:04 +01:00
textinput.h Change interface to system colours to allow reporting of errors 2017-03-01 12:50:30 +00:00
theme.h move themse install to its own header 2014-11-06 14:19:15 +00:00
treeview.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
treeview.h Change interface to system colours to allow reporting of errors 2017-03-01 12:50:30 +00:00
version.c Official Release 2016-11-19 13:55:01 +00:00
version.h split version info into its own header and remove unnecessary nesurf.h includes 2014-10-13 15:08:16 +01:00