File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -755,6 +755,8 @@ static char *(features[]) =
755755
756756static int included_patches [] =
757757{ /* Add new patch number below this line */
758+ /**/
759+ 3205 ,
758760/**/
759761 3204 ,
760762/**/
Original file line number Diff line number Diff line change @@ -5175,14 +5175,14 @@ compile_and_or(
51755175 cctx -> ctx_lnum = start_ctx_lnum ;
51765176
51775177 status = check_ppconst_bool (ppconst );
5178- if (status == OK )
5178+ if (status != FAIL )
51795179 {
51805180 // TODO: use ppconst if the value is a constant
51815181 generate_ppconst (cctx , ppconst );
51825182
51835183 // Every part must evaluate to a bool.
5184- status = ( bool_on_stack (cctx ) );
5185- if (status == OK )
5184+ status = bool_on_stack (cctx );
5185+ if (status != FAIL )
51865186 status = ga_grow (& end_ga , 1 );
51875187 }
51885188 cctx -> ctx_lnum = save_lnum ;
You can’t perform that action at this time.
0 commit comments