Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm
Precedence: bulk
X-No-Archive: yes
List-Id: Zsh Workers List <zsh-workers.zsh.org>
List-Post: <mailto:zsh-workers@zsh.org>
List-Help: <mailto:zsh-workers-help@zsh.org>
X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID
	autolearn=ham autolearn_force=no version=3.4.0
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=brasslantern-com.20150623.gappssmtp.com; s=20150623;
        h=from:message-id:date:to:subject:mime-version:content-type;
        bh=Ffq/uWS4oiMVLiFIFC0+kPKNqFk2bmUlNerQWJKw6kc=;
        b=ckss8XKL/YDuY5SHcycBNKD2Hccd4rpq62C5cveYktNRacjS7GqszyiGnOVzyg6bVA
         HvecqNvq3/75QO/3dgK0Hcok77aSIUigSIMFttslaKEgvwWAyytujTBk9BwD/iV6eCJ3
         oBIFwmQA3O2meHL/0lZEDl4RNBpMeEuoNDOY7gZ3Z62dPlPIEjMjJ+drIDStAEHAOEt5
         kELcjE4D9TWzN9cJPGcye/ewoB+c9IfmT8HSRdLfzpRjhPVeo+tLIb0srKRuJkVNrfp8
         q+MNNeu29Lee5N9TjNFyP3OnVnkIhsKj92/K4h5Cd+7qzdEnwWNUuuDxWaR3OjwL3avc
         2mhA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20130820;
        h=x-gm-message-state:from:message-id:date:to:subject:mime-version
         :content-type;
        bh=Ffq/uWS4oiMVLiFIFC0+kPKNqFk2bmUlNerQWJKw6kc=;
        b=hGca/NswWs1EBah3WcngrcSWcyBcr4+xZkwJsieyur+eSbb31w01du0iwyvVc11bOc
         JJciFiBdvoqAPrZ92rBWGl68DtYQnZvj+PIE83ImWw5b9MpEASH22wirQ6Uhdb9eQQxm
         IY55p2NQ/0YbrhSIcAtJbOEX0jd42Klri/cHEPjQ8QxbWEhcS3iuGPuJkYFUO0d59qkq
         MmF8J+tAyyMzTrXTw06oXPfVz3iv4WuGYTS5JNSfHZAUg7bvT3OTDg3iIknTt/5VK8ci
         Tr5u0uX2ODehdnwXRZA0PaLb+dqPZBK4zRHYImbvLUBunma0Yqqe2w5eaBBXCd1xGe+/
         c8QQ==
X-Gm-Message-State: AG10YOQO+sKWu/HFVvp/hFfgcEyJGXuAL2Jqtl5eds/LRUGXX+i3lch5rz6L/+ibGEYKow==
X-Received: by 10.98.7.136 with SMTP id 8mr25196076pfh.47.1454188302706;
        Sat, 30 Jan 2016 13:11:42 -0800 (PST)
From: Bart Schaefer <schaefer@brasslantern.com>
Message-Id: <160130131232.ZM10557@torch.brasslantern.com>
Date: Sat, 30 Jan 2016 13:12:32 -0800
X-Mailer: OpenZMail Classic (0.9.2 24April2005)
To: zsh-workers@zsh.org
Subject: Other typeset doc things
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Seq: zsh-workers 37845

Forward-reference instances where no parameter is created, and remove the
statement about array assignments separated from typeset command on -p.

diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index 365f8e1..542cecf 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1753,7 +1753,8 @@ xitem(SPACES()[ tt(+) | var(SCALAR)[tt(=)var(value)] var(array)[tt(=LPAR())var(v
 item(tt(typeset) tt(-f) [ {tt(PLUS())|tt(-)}tt(TUkmtuz) ] [ tt(+) ] [ var(name) ... ])(
 Set or display attributes and values for shell parameters.
 
-A parameter is created for each var(name) that does not already refer
+Except as noted below for control flags that change the behavior,
+a parameter is created for each var(name) that does not already refer
 to one.  When inside a function, a new parameter is created for every
 var(name) (even those that already exist), and is unset again when the
 function completes.  See
@@ -1909,8 +1910,7 @@ does not.
 )
 item(tt(-p))(
 If the tt(-p) option is given, parameters and values are printed in the
-form of a typeset command and an assignment (which will be printed
-separately for arrays and associative arrays), regardless of other flags
+form of a typeset command with an assignment, regardless of other flags
 and options.  Note that the tt(-H) flag on parameters is respected; no
 value will be shown for these parameters.
 

