Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
fg call in function: bug?
- X-seq: zsh-workers 22955
- From: "Matt Wozniski" <godlygeek@xxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: fg call in function: bug?
- Date: Fri, 3 Nov 2006 20:15:07 -0500
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=faxdVQcUGca5Xhwe6b7ZsUEVAgly/1xM483guhUVw0zdVWaufvEk1rSo8GXTkEygDNx7Uoih/AQX/IzUzObsco736zoR1yeON+ayNQUsvjv1JT5nugczrZ0jTON27YxE2lGhraoqFD9NGAcQCHYEKfD8dZKYIuSCdvMXK+3wRtU=
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- Reply-to: mjw@xxxxxxxxxx
Ok, I have an even weirder test case for the "job control in cursh
construct" bug... No arguments, %-, %+, and even %2 work as expected,
but %1 doesn't?
~>{ jobs }
~>jobs
~>
~>{ jobs %- }
jobs: no previous job
~>jobs %-
jobs: no previous job
~>
~>{ jobs %+ }
jobs: no current job
~>jobs %+
jobs: no current job
~>
~>{ jobs %1 }
~>jobs %1
jobs: %1: no such job
~>
~>{ jobs %2 }
jobs: %2: no such job
~Matt
~>jobs %2
jobs: %2: no such job
Messages sorted by:
Reverse Date,
Date,
Thread,
Author