Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:101936 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 1801 invoked from network); 26 Feb 2018 19:24:27 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 Feb 2018 19:24:27 -0000 Authentication-Results: pb1.pair.com header.from=me@ryanmccullagh.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=me@ryanmccullagh.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain ryanmccullagh.com designates 66.111.4.26 as permitted sender) X-PHP-List-Original-Sender: me@ryanmccullagh.com X-Host-Fingerprint: 66.111.4.26 out2-smtp.messagingengine.com Received: from [66.111.4.26] ([66.111.4.26:34375] helo=out2-smtp.messagingengine.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 04/61-25585-8EE549A5 for ; Mon, 26 Feb 2018 14:24:25 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id BE0DF20ED0; Mon, 26 Feb 2018 14:24:21 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute3.internal (MEProxy); Mon, 26 Feb 2018 14:24:21 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= ryanmccullagh.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=bmizrl V4FJt/aeSb2L6hvk/lLsZyDqqv5Lxs9l6Nm34=; b=IBEjax6v0BPSuzXb0UCC2K uyO50NZTSN3UrFXyVNDx1QN61lIq26yqAPbWYaTXpiToACTB4xgmNFv+XIQosjPR lVjnFaErgzmbW0j01eDSpwhCM8CUN+J8x++rTZViV3w4050tx1bD/Sle5094NDde Nc/1szjcQ2VP5k44qqpUQqktAfEFH3/ktI+zJreH4w5SXHT8UtrbgpGo45TGf2P5 JUzVRZWtq2gJI5YmdgzTfBZC+AO2BjHVkRvf6y5WjV2bGAq9u7qnmzO5XH7K9IA3 j1TgxHvHLNBRY54wWoIA64SSoWd5TR0a8J+UGslkOYKIQBOQ73d+Bnah/scNiMHw == DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=bmizrl V4FJt/aeSb2L6hvk/lLsZyDqqv5Lxs9l6Nm34=; b=cb5e9JgopxZdJtGy1HtLg3 2RL2iGY13mQr4ErQubk5oXKVJRNiUYZk83YHQgr33GCc11c4ZrY1kxLR/g6xIEq/ CC03RljE4ZmgDxoM9DMWq9WElDEUrGmMoGtTfCTtMkLkHwxoUx07NieGEvy5ByZ9 4ThDY1fsOom9RpIP0GDZDh+q5NOY8ds/GZY0CGTk5NNc/6CKDBfeUK68ErI4TZ2W pmaaiNWlitH5ywwizriUpfUf6q/Otu2wvaCPOhpGhUdTVxYlmr++A+/LTem6z9Bl eh5igUTrqyEXyhXx21c9sUjJlPxFGXybrzUr5b65QUKsPZx1BgOgHAX4bau1JKJQ == X-ME-Sender: Received: from [192.168.0.86] (unknown [128.177.105.150]) by mail.messagingengine.com (Postfix) with ESMTPA id 6E8CB7E321; Mon, 26 Feb 2018 14:24:21 -0500 (EST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (1.0) X-Mailer: iPhone Mail (15D100) In-Reply-To: Date: Mon, 26 Feb 2018 13:24:20 -0600 Cc: Internals Content-Transfer-Encoding: quoted-printable Message-ID: References: <1519526574.1306843.1282347624.22C4E305@webmail.messagingengine.com> To: Kalle Sommer Nielsen Subject: Re: [PHP-DEV] definition of zendparse From: me@ryanmccullagh.com (Ryan McCullagh) It seems that the define is backwards though. =E2=80=98#define yyparse zendp= arse=E2=80=99 still depends on a zendparse symbol. There is no function defi= nition for zendparse. All I can see is yyparse in the generated file. What a= re your thoughts? Sent from my iPhone > On Feb 24, 2018, at 9:02 PM, Kalle Sommer Nielsen wrote: >=20 > Hi Ryan >=20 > 2018-02-25 3:42 GMT+01:00 Ryan McCullagh : >> I can't find this anywhere after a compile of master. `grep -r -n 'zendpa= rse' *`. I see that there are declarations of zendparse, but there is no def= inition as far as I can see. How is this happening? >=20 > This comes from the Zend/zend_language_parser.y file in its generated > form, the yyparse name is set to zendparse (through #define yyparse > zendparse) >=20 > --=20 > regards, >=20 > Kalle Sommer Nielsen > kalle@php.net