@@ -894,7 +894,6 @@ const opt_struct OPTIONS[] = { /* {{{ */
894
894
/* phpdbg options */
895
895
{'q' , 0 , "no banner" },
896
896
{'v' , 0 , "disable quietness" },
897
- {'s' , 0 , "enable stepping" },
898
897
{'b' , 0 , "boring colours" },
899
898
{'i' , 1 , "specify init" },
900
899
{'I' , 0 , "ignore init" },
@@ -1168,7 +1167,6 @@ int main(int argc, char **argv) /* {{{ */
1168
1167
long cleaning = -1 ;
1169
1168
zend_bool quit_immediately = 0 ;
1170
1169
zend_bool remote = 0 ;
1171
- int step = 0 ;
1172
1170
zend_phpdbg_globals * settings = NULL ;
1173
1171
char * bp_tmp = NULL ;
1174
1172
char * address ;
@@ -1223,7 +1221,6 @@ int main(int argc, char **argv) /* {{{ */
1223
1221
php_optarg = NULL ;
1224
1222
php_optind = 1 ;
1225
1223
opt = 0 ;
1226
- step = 0 ;
1227
1224
sapi_name = NULL ;
1228
1225
if (settings ) {
1229
1226
exec = settings -> exec ;
@@ -1318,10 +1315,6 @@ int main(int argc, char **argv) /* {{{ */
1318
1315
flags &= ~PHPDBG_IS_QUIET ;
1319
1316
break ;
1320
1317
1321
- case 's' : /* set stepping on */
1322
- step = 1 ;
1323
- break ;
1324
-
1325
1318
case 'E' : /* stepping through eval on */
1326
1319
flags |= PHPDBG_IS_STEPONEVAL ;
1327
1320
break ;
@@ -1677,11 +1670,6 @@ int main(int argc, char **argv) /* {{{ */
1677
1670
goto phpdbg_out ;
1678
1671
}
1679
1672
1680
- /* step from here, not through init */
1681
- if (step ) {
1682
- PHPDBG_G (flags ) |= PHPDBG_IS_STEPPING ;
1683
- }
1684
-
1685
1673
phpdbg_fully_started = 1 ;
1686
1674
1687
1675
/* #ifndef for making compiler shutting up */
0 commit comments