aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Move the terminal start/stop code into their own functions, exported ↵Paul LeoNerd Evans2012-03-083-47/+81
| | | | (undocumented for now)
* Also link to termkey_{get,set}_buffer_size(3) from termkey(7)Paul LeoNerd Evans2012-03-081-1/+1
|
* Bump VERSION to 0.13Paul LeoNerd Evans2012-03-081-3/+3
|
* Optionally build against libncursesw if unibilium isn't present, before ↵Paul LeoNerd Evans2012-03-081-0/+3
| | | | falling back on plain libncurses
* Added manpage for termkey_{get,set}_buffer_sizePaul LeoNerd Evans2012-02-135-0/+27
|
* Added (undocumented) termkey_set_buffer_size()Paul LeoNerd Evans2012-02-133-0/+45
|
* Added (undocumented) termkey_get_buffer_size()Paul LeoNerd Evans2012-02-133-1/+10
|
* Document the errors set by termkey_new(), use errno rather than fprintf() to ↵Paul LeoNerd Evans2012-01-293-6/+12
| | | | stderr
* Symlink manpage for termkey_new_abstractPaul LeoNerd Evans2012-01-262-0/+2
|
* Use termkey_new_abstract() in unit testsPaul LeoNerd Evans2012-01-269-20/+10
|
* Created termkey_new_abstract()Paul LeoNerd Evans2012-01-263-1/+23
|
* Move initialisation logic out of termkey_new into a static functionPaul LeoNerd Evans2012-01-261-39/+46
|
* Use termkey_set_flags() in constructor rather than copypasted logicPaul LeoNerd Evans2012-01-261-5/+3
|
* Split termkey_new() into alloc and initialise phasesPaul LeoNerd Evans2012-01-261-30/+41
|
* Also mark termkey.c's modnames as staticPaul LeoNerd Evans2012-01-221-1/+1
|
* Mark new driver-csi internal variables as static so they don't result in ↵Paul LeoNerd Evans2012-01-221-5/+5
| | | | linkable symbols
* Fix 'make dist' target for new man/ subdirPaul LeoNerd Evans2012-01-221-1/+3
|
* Bump VERSION to 0.12Paul LeoNerd Evans2012-01-221-3/+3
|
* Also mkdir MAN7DIR at install timePaul LeoNerd Evans2012-01-221-0/+1
|
* Various other minor fixes to manpagesPaul LeoNerd Evans2012-01-216-12/+13
|
* Ensure that 'make htmldocs' rebuilds built manpagesPaul LeoNerd Evans2012-01-211-1/+1
|
* Fix Makefile for manpage generation of new man/termkey.7Paul LeoNerd Evans2012-01-212-1/+3
|
* Removed note about termkey_keycmp() not canonicalising key structures, since ↵Paul LeoNerd Evans2012-01-211-2/+0
| | | | it does in fact do exactly that
* Fix some typoes in termkey_set_canonflags.3Paul LeoNerd Evans2012-01-211-2/+2
|
* Link to termkey(7) from other manpages, delete some of the duplicated sectionsPaul LeoNerd Evans2012-01-2118-134/+49
|
* Initial stab at termkey(7) manpagePaul LeoNerd Evans2012-01-212-0/+110
|
* Note in termkey_new(3) that the caller has to init. the terminal in abstract ↵Paul LeoNerd Evans2012-01-201-0/+2
| | | | or pipe cases
* Don't try to write() the start/stop string if the fd is a pipe, because this ↵Paul LeoNerd Evans2012-01-201-0/+18
| | | | will never work
* Fix another printf() %c charPaul LeoNerd Evans2012-01-201-1/+1
|
* Handle realloc() failures when registering key namesPaul LeoNerd Evans2012-01-201-2/+5
|
* Since CSI key info is the same for every CSI driver, just store one static ↵Paul LeoNerd Evans2012-01-201-194/+151
| | | | copy of it rather than one for every termkey instance - simplifies construct-time allocation
* fprintf() %c wants char, not unsigned charPaul LeoNerd Evans2012-01-201-4/+4
|
* sscanf() %zn ought to take a ssize_t *Paul LeoNerd Evans2012-01-201-2/+3
|
* Allow {start,stop}_driver to fail, abort constructor, have driver-ti try to ↵Paul LeoNerd Evans2012-01-203-11/+39
| | | | write the entire start/stop string or error out on -1
* (void)-cast calls to write() in driver-ti start/stop since we don't -really- ↵Paul LeoNerd Evans2012-01-201-2/+2
| | | | care if they fail, there's not much we can do about it
* \e string escape is not portable; use \033Paul LeoNerd Evans2012-01-183-5/+5
|
* Delete trailing comma in enum{} to keep C++ happyPaul LeoNerd Evans2012-01-181-1/+1
|
* Use only C89 commenting style in .h file, in case of C89 compilers or ↵Paul LeoNerd Evans2012-01-181-27/+27
| | | | similar that want to link
* More minor docs updatesPaul LeoNerd Evans2012-01-182-2/+2
|
* Use the 'also' list for aliased pagesPaul LeoNerd Evans2012-01-182-1/+4
|
* Minor wording fixes to termkey_push_bytes.3 manpagePaul LeoNerd Evans2012-01-181-3/+3
|
* Fix 'htmldocs' Makefile targetPaul LeoNerd Evans2012-01-181-1/+3
|
* Allow passing fd = -1 to constructor to make an instance not associated with ↵Paul LeoNerd Evans2012-01-1815-16/+28
| | | | an fd; must use push_bytes to provide it input
* Added termkey_push_bytes(), a new API for providing input bytesPaul LeoNerd Evans2012-01-1811-80/+158
|
* Move the growing collection of manpages into their own man/ subdirectoryPaul LeoNerd Evans2012-01-1818-3/+3
|
* Ensure that termkey_advisereadable() just fails with errno=ENOMEM rather ↵Paul LeoNerd Evans2012-01-182-1/+7
| | | | than trying to read() zero bytes
* Avoid push_bytes() entirely by read()ing directly into tk->bufferPaul LeoNerd Evans2012-01-181-19/+7
|
* Provide new API function to determine how much buffer space remains in the ↵Paul LeoNerd Evans2012-01-185-2/+56
| | | | instance
* Remove termkey_pushinput() from external API; declare static, rename itPaul LeoNerd Evans2012-01-182-4/+2
|
* Bump VERSION to 0.11Paul LeoNerd Evans2011-11-301-3/+3
|