aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Cast 'term' to (non-const) char* when passing to setupterm() because terminfo...Paul LeoNerd Evans2008-11-281-1/+3
* Use sizeof() on assigned variables rather than types, to make code a little l...Paul LeoNerd Evans2008-11-241-2/+2
* Make on_key() static in demo-async.c to shut up silly GCC warningsPaul LeoNerd Evans2008-11-241-1/+1
* Fixed another signed-vs-unsigned int comparison in driver-ti.cPaul LeoNerd Evans2008-11-241-1/+1
* Make sure l is always initialised in termkey_snprint_key()Paul LeoNerd Evans2008-11-241-1/+1
* Make termkey_new_full() static for now until we expose the API fullyPaul LeoNerd Evans2008-11-241-1/+4
* Fixed some signed/unsigned integer mismatches, including one important bugPaul LeoNerd Evans2008-11-241-4/+4
* Export a gzip rather than bzip2 archivePaul LeoNerd Evans2008-11-241-2/+2
* Bump VERSION_MINOR to 0.1Paul LeoNerd Evans2008-11-181-1/+1
* Remove actual .so file on 'make clean'Paul LeoNerd Evans2008-11-181-1/+1
* Install to SONAME.MINOR and symlink to SONAME and basenamePaul LeoNerd Evans2008-11-181-1/+2
* Only print about unrecognised terminfo variable names when debuggingPaul LeoNerd Evans2008-11-181-1/+4
* Also added 'make dist' target to build distribution tarballPaul LeoNerd Evans2008-11-181-0/+6
* Split Makefile into two halves; added 'make distdir' target for building dist...Paul LeoNerd Evans2008-11-181-15/+32
* Document the TERMKEY_CHECK_VERSION macroPaul LeoNerd Evans2008-11-181-0/+4
* Better Makefile support for built manpages and termkey.h filePaul LeoNerd Evans2008-11-181-2/+5
* Added .bzrignore patterns for other built filesPaul LeoNerd Evans2008-11-161-0/+4
* Added compile-vs-runtime library version checksPaul LeoNerd Evans2008-11-164-0/+26
* Store major and minor version number in Makefile; substitute #defines in term...Paul LeoNerd Evans2008-11-163-2/+14
* Compress trie nodes down to extent maps after loading, to save memoryPaul LeoNerd Evans2008-11-121-15/+59
* Use a trie instead of a linear list of sequence strings in the terminfo drive...Paul LeoNerd Evans2008-11-121-48/+151
* Handle malloc() failures during setup of driver-tiPaul LeoNerd Evans2008-11-121-4/+11
* Make CSI driver's debugging output messages on unrecognised sequences conditi...Paul LeoNerd Evans2008-11-121-6/+12
* CSI driver shouldn't eat sequences it doesn't understand; leave them for anot...Paul LeoNerd Evans2008-11-121-13/+17
* Bugfix to 'unknown CSI' case in CSI driver - neater output message to avoid u...Paul LeoNerd Evans2008-11-121-2/+16
* Added documentation on termkey_{get,set}_flags()Paul LeoNerd Evans2008-11-102-1/+27
* Added (undocumented) termkey_{get,set}_flags() calls to APIPaul LeoNerd Evans2008-11-102-0/+13
* CSI driver should also load when TERM=screen because of screen's stupid way o...Paul LeoNerd Evans2008-11-091-6/+13
* Implemented free_driver() in terminfo driverPaul LeoNerd Evans2008-11-091-0/+5
* When debugging, also print details of a key event when applicablePaul LeoNerd Evans2008-11-091-0/+36
* Load terminfo triver before CSI; in case they both applyPaul LeoNerd Evans2008-11-091-1/+1
* Allow stacking drivers in a linked list; try all of them at getkey() timePaul LeoNerd Evans2008-11-092-37/+88
* If debugging, print verbose output about internals of getkey operationPaul LeoNerd Evans2008-11-091-2/+61
* Driver getkey() can return TERMKEY_RES_NONE which attempts getkey_simple() af...Paul LeoNerd Evans2008-11-093-6/+33
* getkey_simple() should return TERMKEY_RES_NONE if no bytes available; as a sa...Paul LeoNerd Evans2008-11-091-0/+3
* Print name of driver on startup if debuggingPaul LeoNerd Evans2008-11-081-0/+4
* Drivers have namesPaul LeoNerd Evans2008-11-083-0/+5
* Pass driver_info as explicit void* parameter into driver methodsPaul LeoNerd Evans2008-11-084-18/+18
* Pass 'csi' value to static helper functions in driver-csiPaul LeoNerd Evans2008-11-081-10/+8
* Renamed termkey_{set,get}waittime() to termkey_{set,get}_waittime() to be mor...Paul LeoNerd Evans2008-11-069-33/+33
* Don't document the termkey_free() function as it doesn't restore termios; doc...Paul LeoNerd Evans2008-11-063-6/+6
* Include demo.c and demo-async.c in the manpages under an EXAMPLE sectionPaul LeoNerd Evans2008-11-063-1/+28
* Added asynchronous demo which uses poll()Paul LeoNerd Evans2008-11-062-1/+62
* Also document termkey_advisereadable()Paul LeoNerd Evans2008-11-063-1/+33
* Added manpages for (most of) the external API functionsPaul LeoNerd Evans2008-11-067-3/+248
* Neater bitfield constants in .h file; added docs of TERMKEY_FORMAT_* constantsPaul LeoNerd Evans2008-11-031-12/+12
* Make sure all .c->.o builds depend on all .h filesPaul LeoNerd Evans2008-11-031-2/+2
* Better handling of incomplete UTF-8 sequences - just emit a UTF8_INVALID if w...Paul LeoNerd Evans2008-11-031-2/+13
* Better handling in termkey_waitkey() of EOF conditionsPaul LeoNerd Evans2008-11-031-4/+12
* Reuse common Esc-prefix code in getkey_simple() from CSI driver; avoids code ...Paul LeoNerd Evans2008-11-031-44/+5