comparison src/globals.h @ 11105:7c7e496e625d v8.0.0440

patch 8.0.0440: not enough test coverage in Insert mode commit https://github.com/vim/vim/commit/eb992cb90fd79c77ad2743459ac898e6ac3de939 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 9 18:20:16 2017 +0100 patch 8.0.0440: not enough test coverage in Insert mode Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Mar 2017 18:30:07 +0100
parents 5780bd3a5a7e
children a7b7b21071c6
comparison
equal deleted inserted replaced
11104:c6f6c6262418 11105:7c7e496e625d
1646 /* set by alloc_fail(), when zero alloc() returns NULL */ 1646 /* set by alloc_fail(), when zero alloc() returns NULL */
1647 EXTERN int alloc_fail_countdown INIT(= -1); 1647 EXTERN int alloc_fail_countdown INIT(= -1);
1648 /* set by alloc_fail(), number of times alloc() returns NULL */ 1648 /* set by alloc_fail(), number of times alloc() returns NULL */
1649 EXTERN int alloc_fail_repeat INIT(= 0); 1649 EXTERN int alloc_fail_repeat INIT(= 0);
1650 1650
1651 /* flags set by test_override() */
1651 EXTERN int disable_char_avail_for_testing INIT(= 0); 1652 EXTERN int disable_char_avail_for_testing INIT(= 0);
1653 EXTERN int disable_redraw_for_testing INIT(= 0);
1652 1654
1653 EXTERN int in_free_unref_items INIT(= FALSE); 1655 EXTERN int in_free_unref_items INIT(= FALSE);
1654 #endif 1656 #endif
1655 1657
1656 #ifdef FEAT_TIMERS 1658 #ifdef FEAT_TIMERS