summaryrefslogtreecommitdiff
path: root/frontends/atari/hotlist.c
Commit message (Collapse)AuthorAgeFilesLines
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Atari: Update for core hotlist API change.Michael Drake2017-04-251-2/+2
|
* fix warnings and errors in atari frontendVincent Sanders2017-01-211-5/+5
|
* Atari: Fix typo.Michael Drake2016-12-291-1/+1
|
* Atari: Update for new hotlist API.Michael Drake2016-12-291-1/+2
|
* Atari front end doesn't need the tree compat layer.Michael Drake2016-12-281-1/+2
|
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* remove unecessary core window header usageVincent Sanders2016-06-301-1/+0
|
* fix missing includes caused by header cleanupsVincent Sanders2016-06-301-0/+1
|
* remove unecessary content API usage from atari frontendVincent Sanders2016-06-081-3/+2
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+315