1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-01 19:41:00 +02:00

20978: don't propagate EOF from recursive edits

This commit is contained in:
Peter Stephenson 2005-03-15 10:50:58 +00:00
parent 323f8ec741
commit 31aaabe1bc
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-03-15 Peter Stephenson <pws@csr.com>
* 20978: Src/zle_main.c: don't propagate EOFs from recursive
edit.
2005-02-28 Philippe Troin <phil@fifi.org> 2005-02-28 Philippe Troin <phil@fifi.org>
* 20886: configure.ac: Use TTOU with trap rather than SIGTTOU. * 20886: configure.ac: Use TTOU with trap rather than SIGTTOU.

View file

@ -1451,7 +1451,7 @@ recursiveedit(UNUSED(char **args))
zlecore(); zlecore();
locerror = errflag; locerror = errflag;
errflag = done = 0; errflag = done = eofsent = 0;
return locerror; return locerror;
} }