comparison src/ex_docmd.c @ 3976:67e3b2753a6e v7.3.743

updated for version 7.3.743 Problem: Tiny build still fails. Solution: Add #else in the right place.
author Bram Moolenaar <bram@vim.org>
date Wed, 28 Nov 2012 23:03:07 +0100
parents 6e1fe64cf440
children c83cd3d01128
comparison
equal deleted inserted replaced
3975:4621a130011a 3976:67e3b2753a6e
1526 msg_didout |= msg_didout_before_start; 1526 msg_didout |= msg_didout_before_start;
1527 wait_return(FALSE); 1527 wait_return(FALSE);
1528 } 1528 }
1529 } 1529 }
1530 1530
1531 #ifndef FEAT_EVAL 1531 #ifdef FEAT_EVAL
1532 did_endif = FALSE; /* in case do_cmdline used recursively */
1533 #else
1532 /* 1534 /*
1533 * Reset if_level, in case a sourced script file contains more ":if" than 1535 * Reset if_level, in case a sourced script file contains more ":if" than
1534 * ":endif" (could be ":if x | foo | endif"). 1536 * ":endif" (could be ":if x | foo | endif").
1535 */ 1537 */
1536 if_level = 0; 1538 if_level = 0;
1537
1538 did_endif = FALSE; /* in case do_cmdline used recursively */
1539 #endif 1539 #endif
1540 1540
1541 --call_depth; 1541 --call_depth;
1542 return retval; 1542 return retval;
1543 } 1543 }