Skip to content

Tags: nmeum/input

Tags

1.1.1

Toggle 1.1.1's commit message
Restore compatibility with BSD editline and older GNU readline versions

0.7.2

Toggle 0.7.2's commit message
input: block all signals in atexit(3) handler

This fixes a potential race condition where the execution of the cleanup
function form atexit(3) would be interrupted by a signal, causing
cleanup to be called again.

0.7.0

Toggle 0.7.0's commit message
input: update llen after realloc(3)

This reduces the amount of reallocs performed by getline(3).

0.6.1

Toggle 0.6.1's commit message
Unconditionally set signal handler

The signal handler doesn't do anything if neither -h nor -c where given.
Without this change the temporary file weren't removed if -c was given
but -h wasn't.

0.6.0

Toggle 0.6.0's commit message
Don't leave sa_flags uninitialized

The sigaction(3) implementation must read this struct member to figure
out what kind of handler function is being used (sa_sigaction vs.
sa_handler).

0.5.0

Toggle 0.5.0's commit message
input.1: Clarify that received input is written to stdout