summaryrefslogtreecommitdiff
path: root/frontends/monkey/filetype.c
Commit message (Collapse)AuthorAgeFilesLines
* gtk/fetch.c & monkey/filetype.c: ascii_is_space already checks for newline.brabo2019-08-011-3/+2
|
* gtk/fetch.c & monkey/filetype.c: small comment correction.brabo2019-08-011-1/+1
|
* monkey: Add bmp and ico to mime_hash.Michael Drake2019-02-161-0/+2
|
* ensure stdint is included where requiredVincent Sanders2018-04-221-0/+1
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* make monkey frontend mime type processing use explicit ascii processingVincent Sanders2016-09-071-20/+38
|
* reduce usage of content headers by monkey frontendVincent Sanders2016-06-061-1/+0
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+215