summaryrefslogtreecommitdiff
path: root/frontends/amiga/misc.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace global current gui_window with an accessor functionChris Young2019-05-101-0/+1
|
* Get the shared window's window structure directly from the gui_windowChris Young2019-05-071-2/+2
| | | | In a lot of places gui_window_2 was only being accessed for Window
* Make gui_window private to gui.cChris Young2019-05-071-2/+2
| | | | TODO: ratonalise these accessors
* Quick fix to convert helphints to correct charsetChris Young2018-09-271-2/+4
| | | | We should probably have our own strings for these
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Move memory functions from misc.c to memory.cChris Young2016-11-191-52/+0
|
* Fix TODO (writing past end of buffer)Chris Young2016-07-241-9/+10
|
* URL unescape: return the new length to the caller.Michael Drake2016-07-241-4/+6
| | | | | | | | The avoids situations were we threw away the length, only for the caller to have to strlen the returned string. Note, there seems to be a case of the amiga front end writing beyond end of allocation. Added a TODO for now.
* Attempt to help gcc out a littleChris Young2016-07-031-1/+1
|
* reduce curl usage to fetcher, url unescaping and time parsingVincent Sanders2016-06-291-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+506