From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15966 invoked by alias); 29 Sep 2015 01:30:20 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 36690 Received: (qmail 13862 invoked from network); 29 Sep 2015 01:30:19 -0000 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 autolearn=ham autolearn_force=no version=3.4.0 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:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=b1hVPj1wADD91Apxusupmiue0AgRIrC/JRArdme2/B4=; b=IXZfRaf+QgGjYZfUw4USYWSexrqetVR9MULZun6i3tHQ+5Kc7cJdiOPk/O886BzfPW WjjFHISXFXO/pflkvCn5l+o3mCB1V8nHbUTbdiDGC7sp/owlI4V69VoooJsHyoJQXDko DO39RBM5K1SpoKepm2BGVclH+zq82wlXS3hFvIRvDjhjCsst0lBdRo2PBUkMYqJo/9hV XGu1XeEZc3GBNsObP+4hLwk9uxAOxbefi4Kn66ktBcnWUh5qPcn3UM0iDyUMlu879yyC 0J+0j10BqW6JHoaq3/XhkQItzaL2ReX92QDgBkYPCkO9S51V3MIQDy3GQQHaizzrt6Pw IUiQ== X-Gm-Message-State: ALoCoQkKOXmZis1oXw0ykrubrU96Jhlcd4yASS5yU63ibv1TFHe0yAd6XbLepeiq1l4ZyWynmRO1 X-Received: by 10.202.95.2 with SMTP id t2mr12232826oib.77.1443490218443; Mon, 28 Sep 2015 18:30:18 -0700 (PDT) From: Bart Schaefer Message-Id: <150928183016.ZM29411@torch.brasslantern.com> Date: Mon, 28 Sep 2015 18:30:16 -0700 In-Reply-To: <20150928181235.GA4921@tarsus.local2> Comments: In reply to Daniel Shahaf "incomplete sentence in manual" (Sep 28, 6:12pm) References: <20150928181235.GA4921@tarsus.local2> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Re: incomplete sentence in manual MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Sep 28, 6:12pm, Daniel Shahaf wrote: } Subject: incomplete sentence in manual } } Commit 18d82a6c401758e8bd49fef9478168c68d7d2652 contains: } } @@ -170,7 +174,8 @@ pattern are loaded. } With the tt(-w) flag, the var(name)s are taken as names of files compiled } with the tt(zcompile) builtin, and all functions defined in them are } -marked for autoloading. } +marked for autoloading. Note this does not otherwise change the search } +order for } } Could the end of the sentence be committed too, please? Oops. I went looking for where $fpath processing was discussed in order to decide whether it was OK to call it out here, and then got distracted with other edits and never came back to that thought. So either the entire fragment should be deleted (it's now covered by the first paragraph under autoload which was added by that same commit), or if you don't feel that's sufficient then: diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo index 97c3370..691aaeb 100644 --- a/Doc/Zsh/builtins.yo +++ b/Doc/Zsh/builtins.yo @@ -175,7 +175,7 @@ pattern are loaded. With the tt(-w) flag, the var(name)s are taken as names of files compiled with the tt(zcompile) builtin, and all functions defined in them are marked for autoloading. Note this does not otherwise change the search -order for +order via tt(fpath) when the function is first called. The flags tt(-z) and tt(-k) mark the function to be autoloaded using the zsh or ksh style, as if the option tt(KSH_AUTOLOAD) were unset or were I can go either way.