| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Redundant addr in printed rep of string-input-stream. | Kaz Kylheku | 2016-05-07 | 1 | -1/+1 |
* | New: standard stream redirection for subprocesses. | Kaz Kylheku | 2016-05-07 | 1 | -11/+141 |
* | Strengthen against resource leaks upon exceptions. | Kaz Kylheku | 2016-04-21 | 1 | -1/+2 |
* | Recycle conses in unget-char and read-until-match. | Kaz Kylheku | 2016-04-20 | 1 | -1/+1 |
* | Bugfix: optional arg defaulting in get-string. | Kaz Kylheku | 2016-04-20 | 1 | -1/+2 |
* | read-until-match can optionally keep matched text. | Kaz Kylheku | 2016-04-20 | 1 | -3/+5 |
* | Allow unlimited character pushback in unget-char. | Kaz Kylheku | 2016-04-19 | 1 | -10/+5 |
* | Incorrect format args in string stream code. | Kaz Kylheku | 2016-04-19 | 1 | -1/+1 |
* | Fix broken unget_char over string input streams. | Kaz Kylheku | 2016-04-19 | 1 | -1/+1 |
* | Make open_socket static and register in socket.c. | Kaz Kylheku | 2016-04-14 | 1 | -3/+0 |
* | Socket mode strings defaulted and checked. | Kaz Kylheku | 2016-04-14 | 1 | -6/+12 |
* | Adding fmt function. | Kaz Kylheku | 2016-04-14 | 1 | -0/+6 |
* | Wrap #if HAVE_SOCKETS around some functions. | Kaz Kylheku | 2016-03-31 | 1 | -0/+4 |
* | UTF-8 API overhaul: security, and other concerns. | Kaz Kylheku | 2016-03-31 | 1 | -3/+1 |
* | Expose sock-set-peer function. | Kaz Kylheku | 2016-03-31 | 1 | -0/+1 |
* | Replace all stray C style casts with macros. | Kaz Kylheku | 2016-03-29 | 1 | -3/+3 |
* | Improve treatment of open mode in tail streams. | Kaz Kylheku | 2016-03-19 | 1 | -2/+9 |
* | Permissive stream open mode strings. | Kaz Kylheku | 2016-03-19 | 1 | -28/+22 |
* | Size mode meaningful in datagram sockets. | Kaz Kylheku | 2016-03-19 | 1 | -1/+1 |
* | Buffer size digit in file open mode string. | Kaz Kylheku | 2016-03-19 | 1 | -2/+25 |
* | New l and u letters in stream open mode strings. | Kaz Kylheku | 2016-03-18 | 1 | -4/+24 |
* | Bugfix: set errno to zero in stdio_unget_byte. | Kaz Kylheku | 2016-03-15 | 1 | -0/+1 |
* | Implement socket timeouts. | Kaz Kylheku | 2016-03-15 | 1 | -0/+8 |
* | All stdio streams get line buffering with i mode. | Kaz Kylheku | 2016-03-14 | 1 | -1/+6 |
* | Workaround for apparent putc bug in Cygwin. | Kaz Kylheku | 2016-03-10 | 1 | -0/+7 |
* | Record adapter passes through socket ops. | Kaz Kylheku | 2016-03-07 | 1 | -0/+29 |
* | Revamped naming for socket streams. | Kaz Kylheku | 2016-03-07 | 1 | -4/+55 |
* | gc bugs: more instances of wrong mutations. | Kaz Kylheku | 2016-03-07 | 1 | -1/+1 |
* | Bugfix: incorrect error string from stdio streams. | Kaz Kylheku | 2016-03-07 | 1 | -1/+1 |
* | Special implementation of dgram socket streams. | Kaz Kylheku | 2016-03-06 | 1 | -32/+3 |
* | Bugfix: get-string closing stream when told not to. | Kaz Kylheku | 2016-03-06 | 1 | -1/+1 |
* | Move error check from operation to wrapper. | Kaz Kylheku | 2016-03-06 | 1 | -3/+2 |
* | Access to file descriptor now via stream virtual. | Kaz Kylheku | 2016-03-06 | 1 | -15/+45 |
* | Make stdio_mode type public. | Kaz Kylheku | 2016-03-06 | 1 | -14/+2 |
* | Replace stdio_get_line with generic routine. | Kaz Kylheku | 2016-03-05 | 1 | -25/+23 |
* | Socket operations become proper stream virtuals. | Kaz Kylheku | 2016-03-04 | 1 | -13/+77 |
* | Make make_sock_stream static in stream.c. | Kaz Kylheku | 2016-03-04 | 1 | -1/+1 |
* | Socket streams know their connected peer address. | Kaz Kylheku | 2016-02-27 | 1 | -0/+18 |
* | Fix descriptor leak on exception in open-fileno. | Kaz Kylheku | 2016-02-27 | 1 | -1/+3 |
* | open-fileno: errno usage. | Kaz Kylheku | 2016-02-27 | 1 | -1/+1 |
* | Adding socket support: unix, ipv4, ipv6. | Kaz Kylheku | 2016-02-26 | 1 | -0/+96 |
* | Place C standard I/O based streams into subtype. | Kaz Kylheku | 2016-02-26 | 1 | -2/+5 |
* | Fix regression: get-char on string input stream. | Kaz Kylheku | 2016-01-19 | 1 | -2/+3 |
* | Record-delimiting stream adapter. | Kaz Kylheku | 2016-01-01 | 1 | -0/+181 |
* | Copyright year bump. | Kaz Kylheku | 2015-12-31 | 1 | -1/+1 |
* | New variables for floating-point printing control. | Kaz Kylheku | 2015-12-28 | 1 | -4/+15 |
* | Overhaul printing of lazy strings. | Kaz Kylheku | 2015-12-28 | 1 | -26/+31 |
* | Bugfix: crash in get_line. | Kaz Kylheku | 2015-12-09 | 1 | -8/+6 |
* | Large file support. | Kaz Kylheku | 2015-12-04 | 1 | -10/+8 |
* | Bugfix: broken ~o specifier for bignums. | Kaz Kylheku | 2015-11-14 | 1 | -1/+1 |