ソースを参照

core: allow negative parameter to remove_branches

Alex Hermann 14 年 前
コミット
5b258eb6c0
1 ファイル変更1 行追加1 行削除
  1. 1 1
      cfg.y

+ 1 - 1
cfg.y

@@ -3200,7 +3200,7 @@ cmd:
 							NUMBER_ST, (void *)Q_UNSPECIFIED);
 		set_cfg_pos($$);
 	}
-	| REMOVE_BRANCH LPAREN NUMBER RPAREN {
+	| REMOVE_BRANCH LPAREN intno RPAREN {
 			$$=mk_action(REMOVE_BRANCH_T, 1, NUMBER_ST, (void*)$3);
 			set_cfg_pos($$);
 	}