Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm
Precedence: bulk
X-No-Archive: yes
List-Id: Zsh Workers List <zsh-workers.zsh.org>
List-Post: <mailto:zsh-workers@zsh.org>
List-Help: <mailto:zsh-workers-help@zsh.org>
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID
	autolearn=ham autolearn_force=no version=3.4.1
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=brasslantern-com.20150623.gappssmtp.com; s=20150623;
        h=from:message-id:date:in-reply-to:comments:references:to:subject
         :mime-version;
        bh=O59yDonfsmEMsAxN/xcMpDSCuETp+6nI16NEqxJF/tQ=;
        b=ls2aI42LTZoMzvu/Ld61t71WMy/54JoJ9T7OhWrM3BH+UyQ6fjAcmwI3FSCGgk3OJ5
         0m56Sb0eKaF6QdYx+L9Op98/+fImFwp3BpK5HKzqsBWTUtLhZtLEYfK1zId8vQ3N2ruw
         LDAUbxAMJMV8iCTKQdGpRsb/J/FKB/Cdfrdw+Cg2Sw+WsLE+N5SU+HYLv8VLk0sxGjtt
         s1M9leikrLchNXT6XwBgId7mtcvLtzw4ceTQyZnSc/8rTjR6eUF4SbXMbL7I4ZOLLfER
         9qn8eR213GLJlfVVXIXYm30PeyQzs/ryeHWoLngvjK6iarohylbYGImhN6q5T+ZHD7NR
         jgqQ==
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:in-reply-to:comments
         :references:to:subject:mime-version;
        bh=O59yDonfsmEMsAxN/xcMpDSCuETp+6nI16NEqxJF/tQ=;
        b=X4DMPmhfoQS8uQTS+jL+2KZFGiqH5wOwa9XO2mlxqgvUiQjwJxdhYNyNcVXtGb4yFg
         8sSusF7GwvRF43IMxYpDJeedN9DjZPeUJElGqc8K/T9QL9KbK87zvI6sgRKcng3YVrqI
         TRHKrlaXgg2YmX/UBHV0+ojedJ1x2BjkCnZDef7YgYevkzNL52F1cQxotBT5GLqw+R2f
         zO+/8kv5+cNTbe/jO3gDcr6LeHcNIi+A1//NSpEE/oF2sikdCd0r/Eawmf0R2AQ1gFbn
         f4hGoykOPKzpj1eEDA7SbcFYvdomONXnl76YqwyUNgCCD/lq0m7rRt7izpKWqmls8Z1n
         fWig==
X-Gm-Message-State: AD7BkJKB1bYFJz9lBIdxCLW13RIzng65f3MzaAn3RtYxldwuF+78475RgdLnxUVpPP2cJQ==
X-Received: by 10.66.121.97 with SMTP id lj1mr16824662pab.51.1458238402082;
        Thu, 17 Mar 2016 11:13:22 -0700 (PDT)
From: Bart Schaefer <schaefer@brasslantern.com>
Message-Id: <160317111345.ZM16682@torch.brasslantern.com>
Date: Thu, 17 Mar 2016 11:13:45 -0700
In-Reply-To: <20160317151529.GB11303@cventin.lip.ens-lyon.fr>
Comments: In reply to Vincent Lefevre <vincent@vinc17.net>
        "Re: segfault in completion for configure" (Mar 17,  4:15pm)
References: <20160311134729.GA32476@cventin.lip.ens-lyon.fr> 
	<20160311143202.4008e29b@pwslap01u.europe.root.pri> 
	<160311150056.ZM30997@torch.brasslantern.com> 
	<20160312031116.GC28459@zira.vinc17.org> 
	<160312082029.ZM2340@torch.brasslantern.com> 
	<160312093420.ZM14020@torch.brasslantern.com> 
	<20160313215831.GA23404@zira.vinc17.org> 
	<160314194323.ZM6887@torch.brasslantern.com> 
	<20160317151529.GB11303@cventin.lip.ens-lyon.fr>
X-Mailer: OpenZMail Classic (0.9.2 24April2005)
To: zsh-workers@zsh.org
Subject: Re: segfault in completion for configure
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Seq: zsh-workers 38171

On Mar 17,  4:15pm, Vincent Lefevre wrote:
}
} With a lot of [[ $TERM == screen ]] as the only comparison, I can get:

What does "a lot" mean here?

} _arguments:138: fatal error: out of heap memory

That's opt=${opt##[[:space:]]##} so it seems to indicate that we've gone
into an infinite loop, but the underlying cause (global pattern matching
state being messed up by re-entering through a signal handler) is still
the most likely culprit.

