From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8555 invoked by alias); 28 Mar 2015 21:58:57 -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: 34798 Received: (qmail 18057 invoked from network); 28 Mar 2015 21:58:55 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 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=BeIJ4GXOTar4vtykQEu3RnROMNuo8rsAzTYJ66oFg4M=; b=EtmyWPe0IEMD/nReN+KzEt+GlI8WN/SwvzPvrHSCzvqGqfLMfvZEbl9vv30xBe7Jzu RfJ2Gvco4Y2Moxs5ExzP6XbZIluLNc+XjEVD2l/fdi38zWqjsvyBzEG+6Ro5+6xSBa3I C1gdLofrqI+pgVl3IjgokTYeFTnd4SSDWFdyREvZ+atEtR0gKYVMWXM508+P3iVcR6VV 5bt3iGPWtpaxky0HjvQjXHCcrFu3ZTxrGhqIeBp/1Rpp6ZY5Bs2KYtPZFH5AtqaGCPLQ 5ZX3k8Gw/Uak0nUS02ZYYvRZ4jshAbXNX0iAlICooL5DU5cgLa88CDbElrYzrp39bV34 RgOQ== X-Gm-Message-State: ALoCoQlMERMrUdEDXsqxR+oqYzna/O2WNE4o1/YSzzvL1FPoUl/oNhBov8+LkFHqeKKTZqAqhFsr X-Received: by 10.182.191.99 with SMTP id gx3mr21257241obc.16.1427579933898; Sat, 28 Mar 2015 14:58:53 -0700 (PDT) From: Bart Schaefer Message-Id: <150328145851.ZM5613@torch.brasslantern.com> Date: Sat, 28 Mar 2015 14:58:51 -0700 X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Remind me about oddball reserved words MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Here's the entire (11 lines) doc for reserved words: ## 6.5 Reserved Words ================== The following words are recognized as reserved words when used as the first word of a command unless quoted or disabled using disable -r: do done esac then elif else fi for case if while function repeat time until select coproc nocorrect foreach end ! [[ { } Additionally, `}' is recognized in any position if neither the IGNORE_BRACES option nor the IGNORE_CLOSE_BRACES option is set. ## Close brace is recognized as a reserved word in command position? I've entirely forgotten why and would like to be reminded. Also, why close brace and not close-double-bracket?