/* ===================================================================== Source: error.rule ===================================================================== */ error_cmd : KW_ERROR atline fgl_expr_concat opt_attributes { add_feature("ERROR"); map_ui("ERROR"); set_cmdlineno($2); $$=new_error_cmd(make_fgl_expr_list($3), EB_FALSE , $4 ); } | KW_ERROR atline fgl_expr_concat opt_attributes WAIT_FOR_KEY { add_feature("ERROR_WAIT"); set_cmdlineno($2); map_ui("ERRORWAIT"); $$=new_error_cmd(make_fgl_expr_list($3), EB_TRUE , $4 ); } ;