From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23473 invoked by alias); 4 Jan 2014 01:24:02 -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: X-Seq: 18278 Received: (qmail 27415 invoked from network); 4 Jan 2014 01:23:48 -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,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-type:mime-version:subject:from :in-reply-to:date:cc:content-transfer-encoding:message-id :references:to; s=smtpout; bh=BHbLeDIrDqpZDF3EgIFOZDPy0kU=; b=dl Eg7/bW4+oufwKabQ2xnYr8E1n3xyGz6uz6SH8jR1Ry1pPA86tyoPSnn9vJc6FLq8 IjZS+yBt7oonTaIOaKKGvcXZD3o9DQq1UpgbTzhRwthObHlYr28AdC43LNuehu6l wnH3E3hKfX2UFGkoZmTsyyCt3pNzbon0pJ6j5SO0w= X-Sasl-enc: M+W1tNsg7y84+zviQAL2iwBQNs7OVg8C4KeY3Hwts6tg 1388798173 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: Segmentation Fault on Stack Overflow From: =?iso-8859-1?Q?Lawrence_Vel=E1zquez?= In-Reply-To: <87d2k8y6wn.fsf@ft.bewatermyfriend.org> Date: Fri, 3 Jan 2014 20:16:12 -0500 Cc: Russell Harmon , zsh-users@zsh.org Content-Transfer-Encoding: 7bit Message-Id: References: <3540501074823477909@gmail297201516> <87d2k8y6wn.fsf@ft.bewatermyfriend.org> To: Frank Terbeck X-Mailer: Apple Mail (2.1827) On Jan 3, 2014, at 6:36 PM, Frank Terbeck wrote: > This is caused by infinite recursion. More recent versions of the shell > will react more reasonably: > > zsh% function inf() { inf }; inf > inf: maximum nested function level reached What version are you using? I'm seeing the segfault with the latest release. % zsh --version zsh 5.0.4 (x86_64-apple-darwin13.0.2) % zsh -c 'function inf() { inf }; inf' zsh: segmentation fault zsh -c 'function inf() { inf }; inf' % vq