zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-workers@sunsite.dk (Zsh hackers list)
Subject: Re: Bug or misundertanding from my part?
Date: Mon, 19 Sep 2005 15:41:53 +0100	[thread overview]
Message-ID: <14544.1127140913@csr.com> (raw)
In-Reply-To: <20050919143235.GA2831@DervishD>

DervishD wrote:
>     Hi all :)
> 
>     In the ZSH manual for 4.2.5 we can read:
> 
> { TRY-LIST } always { ALWAYS-LIST }
>      First execute TRY-LIST.  Regardless of errors, or break, continue,
>      or return commands encountered within TRY-LIST, execute
>      ALWAYS-LIST.  Execution then continues from the result of the
>      execution of TRY-LIST; in other words, any error, or break,
>      continue, or return command is treated in the normal way, as if
>      ALWAYS-LIST were not present.  The two chunks of code are referred
>      to as the `try block' and the `always block'.
> 
>     So, this code should print "try list" and "always list", but it
> doesn't:
> 
>     #!/bin/zsh
>     emulate -L zsh
> 
>     {
>         print "try list"
>         return 13
>     } always {
>         print "always list"
>         return 0
>     }
> 
>     print "What?"
> 
>     The code above just prints "try list" and exits with a return
> code of "13", but the manual says that the ALWAYS-LIST is executed
> "Regardless of [...] return commands encountered [...]". Am I doing
> something wrong? I'm a bit puzzled because the above works if I
> change 'return 13' for 'false'.

You're running this as a script, right?  In that case the returns are treated
as exits, which have an immediate effect.  To treat returns as returns
you need a function.

pws


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

**********************************************************************


  reply	other threads:[~2005-09-19 14:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-19 14:32 DervishD
2005-09-19 14:41 ` Peter Stephenson [this message]
2005-09-19 15:02   ` DervishD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=14544.1127140913@csr.com \
    --to=pws@csr.com \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).