1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-13 02:56:18 +02:00

48860: remove mention of bugs that have been fixed

This commit is contained in:
Bart Schaefer 2021-05-16 21:11:45 -07:00
parent cf5c4828d1
commit 338af5ea0f
2 changed files with 2 additions and 21 deletions

View File

@ -1,5 +1,7 @@
2021-05-16 Bart Schaefer <schaefer@zsh.org>
* 48860: Etc/BUGS: remove mention of bugs that were fixed
* 48857: Src/builtin.c, Src/exec.c, Src/loop.c, Src/makepro.awk,
Src/params.c, Src/signals.c: declare as "volatile" all globals
that may be modified by signal handlers; recognize in makepro.awk

View File

@ -33,40 +33,19 @@ skipped when STTY=... is set for that command
44007 - Martijn - exit in trap executes rest of function
See test case in Test/C03traps.ztst.
------------------------------------------------------------------------
45656: 'zsh -o nobanghist -o emacs' segfaults
analysis in workers/45657
------------------------------------------------------------------------
44133 debian #924736 (partial patch in 44134) three setopts following ` #`
------------------------------------------------------------------------
44850 terminal issues with continuation markers
------------------------------------------------------------------------
45422 _arguments !-x !+x
------------------------------------------------------------------------
45568 repeat-count "illegal character"
------------------------------------------------------------------------
45656 -o nobanghist -o emacs segfaults
------------------------------------------------------------------------
users/24765 -direct terminals. Not a bug as such but we may need to do
something if -direct values in TERM are ever common
------------------------------------------------------------------------
44850: zle -M doesn't work properly if the command line fills the screen
------------------------------------------------------------------------
45393/45396 [PATCH] avoid lseek(2) calls.
45768 is similar.
------------------------------------------------------------------------
44525, 45778 [PATCH] prompt redrawn on the wrong line upon SIGWINCH
------------------------------------------------------------------------
users/24904: 'func <(...) | wc -l' results in ENOENT on /proc/self/fd/13
% efe() cat $1
% efe <(seq 1 10) | wc -l
cat: /proc/self/fd/13: No such file or directory
0
This occurs because pipelines fork to the left, and named functions
become their own job, which means descriptors numbered >= 10 are closed,
including those opened by process substitution.
------------------------------------------------------------------------
45400: vared does not work in subshells, even when the parent shell is
interactive and the subshell is the foreground job. The USEZLE option is
always turned off in subshells, for reasons lost to history. There is a