Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-15 | linestack.c: fix buffer length. | Elliott Hughes | |
GCC 8.2 (which my laptop appears to have been quietly upgraded to) points out that the %04X of an int might actually take 8 characters; between that, the "U+", and the trailing NUL, we're gonna need a bigger boat... | |||
2018-10-10 | Rewrite of watch. | Rob Landley | |
2018-09-09 | Variable data needs to go at the end. | Rob Landley | |
2018-07-19 | Tweak/add some comments. | Rob Landley | |
2017-09-02 | utf8towc() has to be in lib.c if strlower() is going to use it, because | Rob Landley | |
scripts/*.c builds against lib.c but not linestack.c. | |||
2017-09-02 | In wc, replace mbrtowc() with new utf8towc() which doesn't have a context struct | Rob Landley | |
or care about locale. | |||
2017-01-28 | Fix padto in draw_trim_esc() so it behaves like printf %*.*s and matches the | Rob Landley | |
comment (I.E. negative first value _left_ justifies). This makes ps display the same truncated values with and without a tty. Also add a few comments to the rest of the file. | |||
2016-10-20 | Allow out and escout to be NULL in crunch_str() | Rob Landley | |
2016-03-15 | Add ls -b and make ls -q work with utf8. | Rob Landley | |
2016-02-25 | Typecast a printf argument because wchar_t isn't a rigidly defined size. | Rob Landley | |
2016-01-17 | Extend utf8 fontmetrics so ps can use them. | Rob Landley | |
Also, I forgot to check in uuid_show() last time. | |||
2016-01-17 | Update draw_str() and friends to do standard escaping for ^X <AB> U+ABCD. | Rob Landley | |
2015-12-27 | Add scan_key_getsize() doing the ANSI probe, switch scan_key() to TAGGED_ARRAY, | Rob Landley | |
and add test_scankey. | |||
2015-12-23 | Factor out draw_str() and friends. | Rob Landley | |