1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-01 18:30:55 +01:00

19602: cope with output from the preprocessor on HP/UX, Itanium II

This commit is contained in:
Oliver Kiddle 2004-03-12 09:58:48 +00:00
parent 05f58bbb17
commit fc5d8fcb37
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-03-12 Oliver Kiddle <opk@zsh.org>
* 19602: Src/signames2.awk: adjust to cope with output from the
preprocessor on HP/UX, Itanium II, fixing signals problems
2004-03-11 Clint Adams <clint@zsh.org>
* 19605: Completion/Unix/Command/_mtr: completion for Matt's

View file

@ -6,7 +6,7 @@
# NB: On SunOS 4.1.3 - user-functions don't work properly, also \" problems
# Without 0 + hacks some nawks compare numbers as strings
#
/^XXNAMES XXSIG[A-Z][A-Z0-9]*[\t ][\t ]*[1-9][0-9]*/ {
/^[\t ]*XXNAMES XXSIG[A-Z][A-Z0-9]*[\t ][\t ]*[1-9][0-9]*/ {
sigindex = index($0, "SIG")
sigtail = substr($0, sigindex, 80)
split(sigtail, tmp)