| Commit message (Expand) | Author | Age | Files | Lines |
* | Created termkey_new_abstract() | Paul LeoNerd Evans | 2012-01-26 | 1 | -0/+18 |
* | Move initialisation logic out of termkey_new into a static function | Paul LeoNerd Evans | 2012-01-26 | 1 | -39/+46 |
* | Use termkey_set_flags() in constructor rather than copypasted logic | Paul LeoNerd Evans | 2012-01-26 | 1 | -5/+3 |
* | Split termkey_new() into alloc and initialise phases | Paul LeoNerd Evans | 2012-01-26 | 1 | -30/+41 |
* | Also mark termkey.c's modnames as static | Paul LeoNerd Evans | 2012-01-22 | 1 | -1/+1 |
* | Handle realloc() failures when registering key names | Paul LeoNerd Evans | 2012-01-20 | 1 | -2/+5 |
* | sscanf() %zn ought to take a ssize_t * | Paul LeoNerd Evans | 2012-01-20 | 1 | -2/+3 |
* | Allow {start,stop}_driver to fail, abort constructor, have driver-ti try to w... | Paul LeoNerd Evans | 2012-01-20 | 1 | -1/+2 |
* | Allow passing fd = -1 to constructor to make an instance not associated with ... | Paul LeoNerd Evans | 2012-01-18 | 1 | -1/+11 |
* | Added termkey_push_bytes(), a new API for providing input bytes | Paul LeoNerd Evans | 2012-01-18 | 1 | -0/+23 |
* | Ensure that termkey_advisereadable() just fails with errno=ENOMEM rather than... | Paul LeoNerd Evans | 2012-01-18 | 1 | -0/+6 |
* | Avoid push_bytes() entirely by read()ing directly into tk->buffer | Paul LeoNerd Evans | 2012-01-18 | 1 | -19/+7 |
* | Provide new API function to determine how much buffer space remains in the in... | Paul LeoNerd Evans | 2012-01-18 | 1 | -0/+7 |
* | Remove termkey_pushinput() from external API; declare static, rename it | Paul LeoNerd Evans | 2012-01-18 | 1 | -2/+2 |
* | Canonicalise (a local copy of) the key structures given to termkey_keycmp() b... | Paul LeoNerd Evans | 2011-09-06 | 1 | -12/+18 |
* | A few more DEBUG fprintf(stderr)s at construction time | Paul LeoNerd Evans | 2011-09-05 | 1 | -1/+12 |
* | Handle TERMKEY_RES_ERROR in (debugging mode) res2str() | Paul LeoNerd Evans | 2011-09-05 | 1 | -0/+5 |
* | Allow a flag to convert ASCII DEL into Backspace | Paul LeoNerd Evans | 2011-08-28 | 1 | -0/+6 |
* | Move canonicalisation flags into their own bitfield with their own accessor a... | Paul LeoNerd Evans | 2011-08-28 | 1 | -2/+26 |
* | Provide an explicit termkey_canonicalise() function; canonicalise Space/SP in... | Paul LeoNerd Evans | 2011-08-27 | 1 | -6/+23 |
* | Deleted legacy type name typedefs and declaration of termkey_snprint_key() | Paul LeoNerd Evans | 2011-08-27 | 1 | -1/+4 |
* | Ensure c_cc[VMIN] and c_cc[VTIME] are properly defined, because Solaris seems... | Paul LeoNerd Evans | 2011-08-25 | 1 | -0/+2 |
* | Provide a flag to return RES_ERROR even on signal (EINTR); without it, retry ... | Paul LeoNerd Evans | 2011-08-25 | 1 | -2/+12 |
* | Provide a new result value, TERMKEY_RES_ERROR to indicate an IO error - prese... | Paul LeoNerd Evans | 2011-08-18 | 1 | -4/+17 |
* | Mouse position coordinates are unsigned | Paul LeoNerd Evans | 2011-06-16 | 1 | -3/+3 |
* | Ignore VDSUSP as a signal-sending key too, if platform defines it | Paul LeoNerd Evans | 2011-05-28 | 1 | -0/+4 |
* | sscanf'ing a size_t requires %zn | Paul LeoNerd Evans | 2011-05-28 | 1 | -1/+1 |
* | Gracefully ignore read() yielding EINTR rather than bailing out | Paul LeoNerd Evans | 2011-05-24 | 1 | -1/+1 |
* | Use _POSIX_VDISABLE rather than hardcoded 0 to disable individual entries in ... | Paul LeoNerd Evans | 2011-05-24 | 1 | -2/+2 |
* | Disable ISIG mode entirely if FLAG_CTRLC is set | Paul LeoNerd Evans | 2011-05-24 | 1 | -3/+7 |
* | Bugfix to termkey_keycmp - implement sense in correct direction | Paul LeoNerd Evans | 2011-04-07 | 1 | -6/+6 |
* | Bugfix termkey_strpkey parsing unicode with trailing content | Paul LeoNerd Evans | 2011-04-07 | 1 | -7/+7 |
* | Provide termkey_keycmp() for sorting purposes | Paul LeoNerd Evans | 2011-04-02 | 1 | -0/+26 |
* | Add a couple more 'const' markings to API functions where appropriate | Paul LeoNerd Evans | 2011-04-01 | 1 | -2/+2 |
* | Adjust termkey_strpkey() API more like strptime(); return pointer to end of r... | Paul LeoNerd Evans | 2011-04-01 | 1 | -17/+17 |
* | Provide a termkey_lookup_keyname that can do partial buffer parsing | Paul LeoNerd Evans | 2011-04-01 | 1 | -6/+18 |
* | Ensure strpkey can parse numbered function keys | Paul LeoNerd Evans | 2011-04-01 | 1 | -1/+4 |
* | Unicode codepoint is stored in key->code.codepoint, not code.number | Paul LeoNerd Evans | 2011-04-01 | 1 | -6/+4 |
* | Partial implementation of termkey_strpkey(3); missing FORMAT_WRAPBRACKET and ... | Paul LeoNerd Evans | 2011-04-01 | 1 | -1/+71 |
* | Neater implementation of key modifier names for strfkey; put them in a little... | Paul LeoNerd Evans | 2011-04-01 | 1 | -7/+15 |
* | Extract UTF-8 sequence parser into its own function, fix bugs, apply unit tests | Paul LeoNerd Evans | 2011-03-31 | 1 | -68/+77 |
* | strfkey should fill in the utf8 member of a key struct if it's empty | Paul LeoNerd Evans | 2011-03-31 | 1 | -0/+2 |
* | Renamed snprint_key() to strfkey(); provide redirection trampoline | Paul LeoNerd Evans | 2011-03-31 | 1 | -0/+6 |
* | Don't steal Ctrl-C from the kernel by default (so leave SIGINT enabled); add ... | Paul LeoNerd Evans | 2011-03-23 | 1 | -1/+6 |
* | Interpret space as Unicode by default, add a flag to make it symbolic instead | Paul LeoNerd Evans | 2011-03-23 | 1 | -1/+1 |
* | Allow formatting the mouse position when rendering an event to a string | Paul LeoNerd Evans | 2009-11-27 | 1 | -1/+9 |
* | Make DEBUG=1 mode work with mouse events | Paul LeoNerd Evans | 2009-11-27 | 1 | -0/+8 |
* | Moved code around so DEBUG=1 actually compiles again | Paul LeoNerd Evans | 2009-11-27 | 1 | -51/+53 |
* | Return opaque mouse events in the key structure; add a function to interpret ... | Paul LeoNerd Evans | 2009-11-27 | 1 | -6/+66 |
* | Moved mouse parsing code out of driver-ti.c into core termkey.c | Paul LeoNerd Evans | 2009-11-26 | 1 | -0/+16 |