mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-30 19:20:53 +02:00
20978: don't propagate EOF from recursive edits
This commit is contained in:
parent
323f8ec741
commit
31aaabe1bc
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
* 20886: configure.ac: Use TTOU with trap rather than SIGTTOU.
|
||||
|
|
|
@ -1451,7 +1451,7 @@ recursiveedit(UNUSED(char **args))
|
|||
zlecore();
|
||||
|
||||
locerror = errflag;
|
||||
errflag = done = 0;
|
||||
errflag = done = eofsent = 0;
|
||||
|
||||
return locerror;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue