From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26128 invoked from network); 17 Apr 2001 03:54:43 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 17 Apr 2001 03:54:43 -0000 Received: (qmail 29542 invoked by alias); 17 Apr 2001 03:54:38 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13995 Received: (qmail 29531 invoked from network); 17 Apr 2001 03:54:37 -0000 From: "F. G. Marx" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15067.48757.697880.303760@starf.org> Date: Mon, 16 Apr 2001 23:54:29 -0400 To: zsh-workers@sunsite.dk Subject: Example from manual seems broken X-Mailer: VM 6.90 under 21.2 (beta46) "Urania" XEmacs Lucid 1. The following example from zshexpn.1 FILENAME_EXPANSION is broken in zsh-4.0.1-pre-3: zsh -f $> setopt extendedglob $> foo="a string with a message" $> if [[ $foo = (a|an)' '(#b)(*)' '* ]]; then then> print ${foo[$mbegin[1],$mend[1]]} then> fi $> zsh: bad math expression: operand expected at `$mend[1]' print ${foo[$mbegin[1],15]} and print ${foo[3,$mend[1]]} work fine. 2. I've got _normal complaining about _use_lo not being found after upgrading from dev-2 to dev-3. $> objdump -- _use_lo not found at _normal:100 _use_lo from dev-2 works fine. 3. I'm sorry, I wasn't paying attention: why are the completion functions in new sub-subdirectories in source, but amalgamated in --fndir ? Thanks, /f