Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Bugs list



Bart Schaefer wrote:

 The known bugs in zsh are listed in the file Etc/BUGS.


This one is gone AFAIK:

When interrupting code like the following with ^C:
  while true; do
    sh -c '...'
  done
if the `sh' is executing, zsh does not know that the sh received a ^C and
continues with the next iteration.  This happens for any program which
handles the interrupt, then exits after tidying up; it does not happen for
zsh, which exits directly from the signal handler.  The workaround is to
use ^Z which forks the shell and makes the loop a separate job, then kill
the suspended loop.


-andrej



Messages sorted by: Reverse Date, Date, Thread, Author