Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Odd trap return status
- X-seq: zsh-workers 17205
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-workers@xxxxxxxxxx (Zsh hackers list)
- Subject: Odd trap return status
- Date: Tue, 21 May 2002 16:19:55 +0100
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
% inner() { trap 'return 1' EXIT; return 2; }
% outer() { inner; print Not executed; return 3; }
% outer; print $?
2
I think that ought to be 1. Somehow the return value of inner is being
preserved instead of the value specified. (Remember the EXIT trap runs
in the scope of `outer'; this seems to be working OK.)
Unfortunately there's no other shell with which to compare since they
don't apply EXIT traps to functions.
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 392070
**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential
and/or privileged material.
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by
persons or entities other than the intended recipient is
prohibited.
If you received this in error, please contact the sender and
delete the material from any computer.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author