summaryrefslogtreecommitdiff
path: root/monkey/dispatch.c
Commit message (Collapse)AuthorAgeFilesLines
* Change LOG() macro to be varadicVincent Sanders2015-05-281-1/+1
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* remove the die API from the core.Vincent Sanders2014-10-261-3/+6
| | | | | | | | The die() API for abnormal termination does not belong within the core of netsurf and instead errors are propogated back to the callers. This is the final part of this change and the API is now only used within some parts of the frontends
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-1/+0
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* set defaults for cookie and url databaseVincent Sanders2014-10-121-2/+2
|
* Fix checking memory allocation return, fixes coverity 1164969Vincent Sanders2014-05-071-3/+17
|
* ensure monkey command dispatch frees argument vector (coverity 1127054)Vincent Sanders2014-01-241-1/+4
|
* Give Monkey a hearing aid, add 'WINDOW NEW' 'WINDOW GO' and 'WINDOW DESTROY' ↵Daniel Silverstone2011-03-121-0/+86
commands, along with 'QUIT' svn path=/trunk/netsurf/; revision=11974