mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +01:00
20566++: prefer SIGCHLD to SIGCLD and SIGPOLL to SIGIO
This commit is contained in:
parent
7daa6320b4
commit
e022a9814a
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-11-19 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
|
* 20566: Src/signames2.awk: prefer SIGCHLD to SIGCLD.
|
||||||
|
Also (unposted) prefer SIGPOLL to SIGIO.
|
||||||
|
|
||||||
2004-11-18 Clint Adams <clint@zsh.org>
|
2004-11-18 Clint Adams <clint@zsh.org>
|
||||||
|
|
||||||
* unposted: Completion/Unix/Command/_bogofilter: fix -w/-p typo, which was
|
* unposted: Completion/Unix/Command/_bogofilter: fix -w/-p typo, which was
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
split(sigtail, tmp)
|
split(sigtail, tmp)
|
||||||
signam = substr(tmp[1], 4, 20)
|
signam = substr(tmp[1], 4, 20)
|
||||||
signum = tmp[2]
|
signum = tmp[2]
|
||||||
|
if (signam == "CHLD" && sig[signum] == "CLD") sig[signum] = ""
|
||||||
|
if (signam == "POLL" && sig[signum] == "IO") sig[signum] = ""
|
||||||
if (sig[signum] == "") {
|
if (sig[signum] == "") {
|
||||||
sig[signum] = signam
|
sig[signum] = signam
|
||||||
if (0 + max < 0 + signum && signum < 60)
|
if (0 + max < 0 + signum && signum < 60)
|
||||||
|
|
Loading…
Reference in a new issue