Sean Leather

Results 113 comments of Sean Leather

Also, there seems to be an apparent disconnect between the `open_descriptor` documentation of the second and third arguments and their actual usage in the definition: | Doc | Def |...

Thanks! Just for my edification, for which cases should it fail without throwing an exception?

Makes sense. So we just need to update the documentation. 1. It should be `semidet` with an explanation. 2. The argument documentation should be updated to reflect the implementation.

I found this issue after encountering the error below when running [`shfmt`](https://github.com/mvdan/sh) on a `.bats` file. ``` test.bats:23:1: "}" can only be used to close a block ``` Are there...

For anyone who might be interested, this is what I did. All my Bats tests are found in `./test/*.bats` and written with this pattern: ```sh @test "test description" { #...

Just in case it matters, what do `xelatex --version` and `tectonic --version` show?

Great find! I believe `tectonic` is providing TeX Live 2018 packages (via https://github.com/tectonic-typesetting/tectonic-staging). Could that account for the different `parskip` version?

Also, since TeX Live 2019 was released in April, I'd like to try updating the package set (unless somebody else gets around to it first). But I've been in the...

This appears to be bug-compatible with `xelatex`. See these StackOverflow questions for more information: * [Unable to load picture or PDF file](https://tex.stackexchange.com/questions/60292/unable-to-load-picture-or-pdf-file) * [`\includegraphics`: Dots in filename](https://tex.stackexchange.com/questions/10574/includegraphics-dots-in-filename) I believe `xelatex`...

Hi @danburkert! I was just perusing through various repositories involving implementations of memory-mapping in Rust, and, in the process, I happened to come across both this issue and https://github.com/rbranson/rust-mmap/issues/5, which...