Skip to content

Tags: vendion/elvish

Tags

v0.12

Toggle v0.12's commit message
edit/edcore: Save the terminal restore callback once and reuse.

This fixes elves#706.

v0.12-rc2

Toggle v0.12-rc2's commit message
program: Add Go version to output of -buildinfo.

v0.12-rc1

Toggle v0.12-rc1's commit message
edit/edcore: More log message.

v0.11

Toggle v0.11's commit message
fix overflows on req arg in ioctl

Signed-off-by: Shengjing Zhu <i@zhsj.me>

v0.11-rc2

Toggle v0.11-rc2's commit message
fix overflows on req arg in ioctl

Signed-off-by: Shengjing Zhu <i@zhsj.me>

v0.11-rc1

Toggle v0.11-rc1's commit message
Fix element assignment of upvalues.

This fixes elves#564.

v0.10.1

Toggle v0.10.1's commit message
Fix AsyncReader for go 1.9.

With the introduction of the builtin poller, the standard library manages
nonblockingness of fds itself. As a result, a Read on a nonblocking fd can
still block (presumably, since the builtin poller when make fds nonblocking on
its own, it will emulate blocking IO even if the fd itself is nonblocking).

The solution is to simply use the read syscall to read from a nonblocking fd,
thus avoiding the blocking IO emulation behavior of the standard library.

v0.10

Toggle v0.10's commit message
Fix AsyncReader for go 1.9.

With the introduction of the builtin poller, the standard library manages
nonblockingness of fds itself. As a result, a Read on a nonblocking fd can
still block (presumably, since the builtin poller when make fds nonblocking on
its own, it will emulate blocking IO even if the fd itself is nonblocking).

The solution is to simply use the read syscall to read from a nonblocking fd,
thus avoiding the blocking IO emulation behavior of the standard library.

v0.9

Toggle v0.9's commit message
Remove embedded: from embedded namespace. Remove "acme:".

v0.8

Toggle v0.8's commit message
eval: In gen-embedded-module, handle backtick correctly.