diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-09-11 12:12:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-11 12:12:59 -0700 |
commit | 413e86869ef147431a78946562c125938b41f533 (patch) | |
tree | 4499c79a08aa7d0d3815c577f3ad98fcbdfe5b0b /src/nvim/ops.c | |
parent | e31652879e4ecfc63b450626209d09df79336de0 (diff) | |
parent | 7175efb518d09aad59f7917c15b7c9752e9e320e (diff) | |
download | rneovim-413e86869ef147431a78946562c125938b41f533.tar.gz rneovim-413e86869ef147431a78946562c125938b41f533.tar.bz2 rneovim-413e86869ef147431a78946562c125938b41f533.zip |
Merge #14611 from seandewar/vim-8.1.1116
vim-patch:8.1.{1116,1188,1190,1355,1722,2035,2036,2038,2043},8.2.{0886,2309}
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 3f0d85dc88..77432149ce 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -5017,7 +5017,7 @@ int do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1) 0 + (do_bin ? STR2NR_BIN : 0) + (do_oct ? STR2NR_OCT : 0) + (do_hex ? STR2NR_HEX : 0), - NULL, &n, maxlen); + NULL, &n, maxlen, false); // ignore leading '-' for hex, octal and bin numbers if (pre && negative) { |