index
:
txr
master
txr-old
TXR: A data munging language.
kaz@kylheku.com
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
stream.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
*
Implementing *print-base* and ~d format directive.
Kaz Kylheku
2015-11-14
1
-22
/
+55
*
New global control over float print precision.
Kaz Kylheku
2015-11-13
1
-3
/
+13
*
Stop using C library setjmp/longjmp.
Kaz Kylheku
2015-10-25
1
-1
/
+0
*
Implementing truncate-stream.
Kaz Kylheku
2015-10-21
1
-7
/
+50
*
Correction in error message on unimplemented seek.
Kaz Kylheku
2015-10-21
1
-1
/
+1
*
Support binary specifier in format.
Kaz Kylheku
2015-10-17
1
-5
/
+26
*
Remove use of the system function.
Kaz Kylheku
2015-10-16
1
-19
/
+10
*
Don't force lazy string in string input streams.
Kaz Kylheku
2015-09-26
1
-11
/
+5
*
Introduce chk_wmalloc function.
Kaz Kylheku
2015-09-22
1
-1
/
+1
*
Don't use prot1 for temporary gc protection.
Kaz Kylheku
2015-09-07
1
-10
/
+4
*
Move stat functions to use a struct.
Kaz Kylheku
2015-08-30
1
-16
/
+0
*
Renaming c_true to tnil.
Kaz Kylheku
2015-08-27
1
-1
/
+1
*
Replace two-step initialization of args with macros.
Kaz Kylheku
2015-08-24
1
-2
/
+1
*
Large scale conversion to new way of handling arguments.
Kaz Kylheku
2015-08-23
1
-26
/
+14
*
Remove silly use of apply from open-files.
Kaz Kylheku
2015-08-21
1
-5
/
+2
*
Streamlining format with new args module.
Kaz Kylheku
2015-08-17
1
-66
/
+48
*
Observe display width in format.
Kaz Kylheku
2015-08-13
1
-6
/
+36
*
Fix regression in string field formatting.
Kaz Kylheku
2015-08-12
1
-4
/
+0
*
Catenated stream reads must not close last stream.
Kaz Kylheku
2015-08-12
1
-6
/
+9
*
Count East Asian Wide and Full Fidth chars as two columns.
Kaz Kylheku
2015-08-10
1
-4
/
+5
*
C++ upkeep: conversions, clashes, warnings.
Kaz Kylheku
2015-08-07
1
-1
/
+1
*
* stream.c: Include <wctype.h> header for iswprint.
Kaz Kylheku
2015-08-07
1
-0
/
+1
*
* stream.c (stream_init): Register get-indent-mode, set-indent-mode,
Kaz Kylheku
2015-08-05
1
-0
/
+11
*
* stream.c (width_check): Just use the public
Kaz Kylheku
2015-08-05
1
-11
/
+4
*
* stream.c (put_string): In indent mode, put_string has
Kaz Kylheku
2015-08-04
1
-6
/
+7
*
* stream.c (vformat): Implement ~! format directive for indentation.
Kaz Kylheku
2015-08-04
1
-7
/
+37
*
* stream.c (put_string, put_char): Do not put out the indentation
Kaz Kylheku
2015-08-04
1
-2
/
+13
[next]