From 2848a5e030f2fe38e4184e25c6b7df5aaad6489d Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 5 Aug 2013 14:19:06 +0200 Subject: [PATCH] Issue 3488: lily/parser.yy: Use %pure-parser instead of %pure_parser While %pure-parser is already deprecated for Bison 3.0, it is still supported as opposed to %pure_parser which has been removed altogether in Bison 3.0. The currently recommended form %define api.pure has only become available with Bison 2.3b, and there are currently older versions of Bison in use with LilyPond. So the followup move of replacing the already deprecated %pure-parser with %define api.pure is left for a later point of time. --- lily/parser.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lily/parser.yy b/lily/parser.yy index 40ccb3a20b..a7d7285a06 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -113,7 +113,7 @@ or -%pure_parser +%pure-parser %locations -- 2.39.5