Eliminate _PP macro

Not sure if this code ever used (probably not as it doesn't even compile now)
but just in case...
This commit is contained in:
Stanislav Malyshev 2015-10-18 16:37:03 -07:00
parent c2d2d097d1
commit acb38ac636

View File

@ -305,7 +305,7 @@ PHP_FUNCTION(readline_info)
oldval = rl_erase_empty_line;
if (value) {
convert_to_long_ex(value);
rl_erase_empty_line = Z_LVAL_PP(value);
rl_erase_empty_line = Z_LVAL_P(value);
}
RETVAL_LONG(oldval);
#endif