Fix spurious exit on speech interruption by espeakup
espeak sends SIGUSR1 to make mbrola flush its output. Handling that signal however makes fgets return EINTR, as expected on System V systems. readline_InputFile thus has to loop over in that case. Otherwise it would erroneously think an error or EOF occurred and exit.