diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-11 17:19:43 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-12 09:26:34 +0200 |
| commit | 852ab5d83fc350cabbe5d80237410ab9e2d47176 (patch) | |
| tree | 2ca6fefb206cc4dbecca67827fafb6da0bc56086 /sapi/phpdbg/phpdbg_parser.y | |
| parent | c54a247cb0d15e683131daf16ec932fc1b30af43 (diff) | |
| download | php-git-852ab5d83fc350cabbe5d80237410ab9e2d47176.tar.gz | |
Use %define api.pure instead of %pure-parser
%pure-parser is deprecated. In our case there is no difference between
true & full, as we don't use locations.
Diffstat (limited to 'sapi/phpdbg/phpdbg_parser.y')
| -rw-r--r-- | sapi/phpdbg/phpdbg_parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_parser.y b/sapi/phpdbg/phpdbg_parser.y index c4f6682fee..3031ce5a80 100644 --- a/sapi/phpdbg/phpdbg_parser.y +++ b/sapi/phpdbg/phpdbg_parser.y @@ -28,7 +28,7 @@ ZEND_EXTERN_MODULE_GLOBALS(phpdbg) %} -%pure-parser +%define api.pure full %define parse.error verbose %code requires { |
