From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: zsh-users-return-23639-ml=inbox.vuxu.org@zsh.org X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 23b44b0d for ; Sun, 16 Sep 2018 21:45:00 +0000 (UTC) Received: (qmail 13756 invoked by alias); 16 Sep 2018 21:44:47 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 23639 Received: (qmail 20154 invoked by uid 1010); 16 Sep 2018 21:44:47 -0000 X-Qmail-Scanner-Diagnostics: from out1-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(66.111.4.25):SA:0(-2.6/5.0):. Processed in 2.509425 secs); 16 Sep 2018 21:44:47 -0000 X-Envelope-From: d.s@daniel.shahaf.name X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= daniel.shahaf.name; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ZmE6IZ 8VwvElEX/23216fnhhw596dJoaDS/TQBoSFuo=; b=anRsPgqxZBUMhGyd0SyFup 6AZa6rgmEqUJ5FDaXZm73IjnPGusjjKjiHQYAoyNIFX9WvNP+8Gv/Nt2yG6TSBHZ zBgGJuQqGBSnrEpJEQ180AkdGmlZ3mlxheKfmo5TbdK0wRWbYhPWGd4vctrBWiV2 CNz3pZrSkfhboM7tQ6U0a+CYIh2BSWA1km+g6vxayDsH8zSq9bdCDT9ii7k/XVMr DUbKp+djA3U4Vp3PJtEs/muMkuek0OxkT8RFjNqRsUVTKH5+jRRNw13TP0c6R9AO 2OVSo8kq+25OgL+UXBWT0MCzqKQipky4l8GZ/ds5fMzn+PVB3PuUf3wpWzPHgGmA == DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=ZmE6IZ 8VwvElEX/23216fnhhw596dJoaDS/TQBoSFuo=; b=HDKvlWg9MOI9WUz+BN2luE GexXSIuMi0pBQTTcfTVwv1mPqaQqHYs/C5jRqVg+G/n6WbuyT2pQ9HpBSoJO2Mtg J/W6OoombY+3Q+yIRnp2s8On6wyldZOjLqfFV2KXNyYOJeWJrTYP05q8WCOmPZSH ygh+0PJR90NK603rUcYqYcErnFbBCDF4YOutASHANitS8WX8WncFHLu68dN3HEnk Klg3xPW9IDF0XKN1/OiB+pm+CnB0WpBGiUTE2Y1anQv+qq1y6YxOdLY8VAekjKDj L3xBfp856BKuh12MTAT1nZL21ZOifgYkiOQRgkOn8h6q3SNFvty5tiAKxRzmZs8g == X-ME-Proxy: X-ME-Sender: Message-Id: <1537134280.3026165.1510059848.0DC32D7A@webmail.messagingengine.com> From: Daniel Shahaf To: zsh-users@zsh.org Cc: lilydjwg MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-e556cd15 Date: Sun, 16 Sep 2018 21:44:40 +0000 In-Reply-To: References: <20180916172716.GA27892@lilyforest.localdomain> <20180916204433.6k36inmuekgqp3a2@tarpaulin.shahaf.local2> Subject: Dangling reference in zshroadmap(1) (was: Re: test for newline in a variable--unexpected results sometimes) dana wrote on Sun, 16 Sep 2018 15:53 -0500: > This is mostly covered by the Shell Grammar section of the manual, though it's > not quite as explicit zshroadmap(1) refers to a "Shell Grammar" section, but there's no such section in the man pages: % cd $prefix/share/man/man1 % grep -i 'shell grammar' zsh*.1 | me zshroadmap.1:General shell syntax is introduced in the section `Shell Grammar\&' in % grep -i grammar zshmisc.1 .\" Yodl file: Zsh/grammar.yo % Checking the yodl source, I see a chapter(Shell Grammar) directive, followed by the contents that ends up at the top of zshmisc(1). That is: the content is there, but we have a dangling reference in zshroadmap(1) to a non-existent section header. Cheers, Daniel