| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-09-25 | rustdoc: Change all code-blocks with a script | Alex Crichton | -6/+6 | |
| find src -name '*.rs' | xargs sed -i '' 's/~~~.*{\.rust}/```rust/g' find src -name '*.rs' | xargs sed -i '' 's/ ~~~$/ ```/g' find src -name '*.rs' | xargs sed -i '' 's/^~~~$/ ```/g' | ||||
| 2013-09-18 | Register new snapshots | Alex Crichton | -2/+2 | |
| 2013-09-12 | Stop using newtypes in rt::io::buffered | Steven Fackler | -13/+19 | |
| This is a workaround for #9155. Currently, any uses of BufferedStream outside of libstd ICE. | ||||
| 2013-09-10 | Buffered I/O wrappers | Steven Fackler | -0/+355 | |
| The default buffer size is the same as the one in Java's BufferedWriter. We may want BufferedWriter to have a Drop impl that flushes, but that isn't possible right now due to #4252/#4430. This would be a bit awkward due to the possibility of the inner flush failing. For what it's worth, Java's BufferedReader doesn't have a flushing finalizer, but that may just be because Java's finalizer support is awful. Closes #8953 | ||||
