comparison src/scriptfile.c @ 29765:bc6cf208b1b4 v9.0.0222

patch 9.0.0222: no good reason why text objects are only in larger builds Commit: https://github.com/vim/vim/commit/887748742deae3d6de7aa0fdbb042afe1ccf5e7a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 16 20:24:29 2022 +0100 patch 9.0.0222: no good reason why text objects are only in larger builds Problem: No good reason why text objects are only in larger builds. Solution: Graduate +textobjects.
author Bram Moolenaar <Bram@vim.org>
date Tue, 16 Aug 2022 21:30:04 +0200
parents 32f358d71ec2
children 761631155a90
comparison
equal deleted inserted replaced
29764:c99cffeb155d 29765:bc6cf208b1b4
1376 funccal_entry_T funccalp_entry; 1376 funccal_entry_T funccalp_entry;
1377 int save_debug_break_level = debug_break_level; 1377 int save_debug_break_level = debug_break_level;
1378 int sid; 1378 int sid;
1379 scriptitem_T *si = NULL; 1379 scriptitem_T *si = NULL;
1380 int save_estack_compiling = estack_compiling; 1380 int save_estack_compiling = estack_compiling;
1381 ESTACK_CHECK_DECLARATION
1381 #endif 1382 #endif
1382 #ifdef STARTUPTIME 1383 #ifdef STARTUPTIME
1383 struct timeval tv_rel; 1384 struct timeval tv_rel;
1384 struct timeval tv_start; 1385 struct timeval tv_start;
1385 #endif 1386 #endif
1386 #ifdef FEAT_PROFILE 1387 #ifdef FEAT_PROFILE
1387 proftime_T wait_start; 1388 proftime_T wait_start;
1388 #endif 1389 #endif
1389 int save_sticky_cmdmod_flags = sticky_cmdmod_flags; 1390 int save_sticky_cmdmod_flags = sticky_cmdmod_flags;
1390 int trigger_source_post = FALSE; 1391 int trigger_source_post = FALSE;
1391 ESTACK_CHECK_DECLARATION
1392 1392
1393 CLEAR_FIELD(cookie); 1393 CLEAR_FIELD(cookie);
1394 if (fname == NULL) 1394 if (fname == NULL)
1395 { 1395 {
1396 // sourcing lines from a buffer 1396 // sourcing lines from a buffer
1691 } 1691 }
1692 #endif 1692 #endif
1693 1693
1694 if (got_int) 1694 if (got_int)
1695 emsg(_(e_interrupted)); 1695 emsg(_(e_interrupted));
1696 #ifdef FEAT_EVAL
1696 ESTACK_CHECK_NOW 1697 ESTACK_CHECK_NOW
1698 #endif
1697 estack_pop(); 1699 estack_pop();
1698 if (p_verbose > 1) 1700 if (p_verbose > 1)
1699 { 1701 {
1700 verbose_enter(); 1702 verbose_enter();
1701 smsg(_("finished sourcing %s"), fname); 1703 smsg(_("finished sourcing %s"), fname);