From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 2529 invoked from network); 19 May 2023 00:14:36 -0000 Received: from zero.zsh.org (2a02:898:31:0:48:4558:7a:7368) by inbox.vuxu.org with ESMTPUTF8; 19 May 2023 00:14:36 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=zsh.org; s=rsa-20210803; h=List-Archive:List-Owner:List-Post:List-Unsubscribe: List-Subscribe:List-Help:List-Id:Sender:Message-ID:Date:Content-ID: Content-Type:MIME-Version:Subject:To:From:Reply-To:Cc: Content-Transfer-Encoding:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References; bh=+uWWY8xaLKsKNwBpPWOFtTobrGZoVjNL2PGm7h3W62o=; b=FQbga6kMQhWTeKggb+DEBcbWVj yDli1+YmTziYHP65W+wicrYDK2Ue3EUBYHVfrxdbteODKAuIyLtZoaZKDvKTFKmf3B7VfSfPBmbx9 /12gFB3iwf3k/NHLl4XZRxBBS4GawD/IcEE10epr/CE5CXqUE9BReUHmV45dY2Z6zMOlteGPopasv zmnNY+fEh+rWCX2NL56nvNuLC+pBOVly09bKZYPax5sB4WWc7FLfyxYfDo7TeXsgSLX6H9imo0Msh lncLJV8QjDeRUaOWU5cg9AzVYmvFzAZURfYsxMK94m8tAS9NKfmlE8oxsNISWwghUE7H5ou+KgedU mbQfs/Mw==; Received: by zero.zsh.org with local id 1pznlP-0005fl-95; Fri, 19 May 2023 00:14:31 +0000 Received: by zero.zsh.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) id 1pznkq-0005Ms-4U; Fri, 19 May 2023 00:13:56 +0000 Received: from [192.168.178.21] (helo=hydra) by mail.kiddle.eu with esmtp(Exim 4.95) (envelope-from ) id 1pznkp-0002Ys-29 for zsh-workers@zsh.org; Fri, 19 May 2023 02:13:55 +0200 From: Oliver Kiddle To: Zsh workers Subject: namespaces limitation MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <9848.1684455235.1@hydra> Date: Fri, 19 May 2023 02:13:55 +0200 Message-ID: <9849-1684455235.063540@_q24.9gsR.Efjj> X-Seq: 51764 Archived-At: X-Loop: zsh-workers@zsh.org Errors-To: zsh-workers-owner@zsh.org Precedence: list Precedence: bulk Sender: zsh-workers-request@zsh.org X-no-archive: yes List-Id: List-Help: , List-Subscribe: , List-Unsubscribe: , List-Post: List-Owner: List-Archive: I came across the following when using the new namespaces: integer .var.d=0 (( .var.d++ )) zsh: bad floating point constant It'd be good if it could identify this as a namespace variable. And should this be allowed or should it complain about the 3 part not being an identifier? integer .3=67 Oliver