diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-01-14 12:13:13 +0100 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-01-19 19:47:28 +0100 |
commit | 79b5a629eb3fcabbca4b3f215e341823ff3099bd (patch) | |
tree | c67b8653559e956ea6e9ff1c952b36ddbd6429ef /src/nvim/ops.c | |
parent | b716b047e0926cd510e4ba4455b29f388caff749 (diff) | |
download | rneovim-79b5a629eb3fcabbca4b3f215e341823ff3099bd.tar.gz rneovim-79b5a629eb3fcabbca4b3f215e341823ff3099bd.tar.bz2 rneovim-79b5a629eb3fcabbca4b3f215e341823ff3099bd.zip |
Remove long_u: ops.c: Refactor long_u.
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 8fb3ba7f08..90fc89ee21 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -4234,8 +4234,7 @@ int do_addsub(int command, linenr_T Prenum1) char_u buf2[NUMBUFLEN]; int hex; /* 'X' or 'x': hex; '0': octal */ static int hexupper = FALSE; /* 0xABC */ - unsigned long n; - long_u oldn; + unsigned long n, oldn; char_u *ptr; int c; int length = 0; /* character length of the number */ |