diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-07-07 08:30:43 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-11-11 11:34:58 -0500 |
commit | f5aee19ac054f1a3f5359fe36a5290dfd715e000 (patch) | |
tree | dfe238d11ca4fb9dd26746730746ba76ea314d7f /runtime/syntax/gitcommit.vim | |
parent | e450c541ddfe1266d3d56b594f83ab197e747584 (diff) | |
download | rneovim-f5aee19ac054f1a3f5359fe36a5290dfd715e000.tar.gz rneovim-f5aee19ac054f1a3f5359fe36a5290dfd715e000.tar.bz2 rneovim-f5aee19ac054f1a3f5359fe36a5290dfd715e000.zip |
Use bool for flags in oparg_T.
Several opart_T members like use_reg_one, end_adjusted, empty,
is_VIsual, and block_mode, only ever store TRUE or FALSE, so make this
constraint explicit by changing them to bools, and TRUE to true and
FALSE to false in the context of their uses.
The member, inclusive, has several other uses such as in arithmetic
equations and one inequality, but every single assignment (obtained with
'grep -r "inclusive \\="') sets it to either TRUE or FALSE.
This also implies that the inequality, "oap->end.coladd <
oap->inclusive", can only be true when coladd==0 and inclusive==true, so
test for that instead.
For consistency, change the first argument of findpar (which ends up
being inclusive) to bool.
Include stdbool.h for consistency with issue #918.
This commit shrinks the size of oparg_T from 128 bytes to 112 (-13%) on
my machine.
Diffstat (limited to 'runtime/syntax/gitcommit.vim')
0 files changed, 0 insertions, 0 deletions