diff options
author | watiko <service@mail.watiko.net> | 2016-01-14 20:41:22 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2016-02-01 03:43:37 +0900 |
commit | 43fd12629841d459214ead194410d317ef06006c (patch) | |
tree | 074740a72dbbcc9518b2d6bc34458f3b1a298690 /src/nvim/ex_cmds.c | |
parent | b20b8f9f0450e0a3188f2f1c89d575399e0ab9a6 (diff) | |
download | rneovim-43fd12629841d459214ead194410d317ef06006c.tar.gz rneovim-43fd12629841d459214ead194410d317ef06006c.tar.bz2 rneovim-43fd12629841d459214ead194410d317ef06006c.zip |
vim-patch:7.4.782
Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode.
Solution: Fix the reported problems. (Christian Brabandt)
https://github.com/vim/vim/commit/5d1bc78a2b9fbe3e3112afcde7c80eb19d5989f4
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 407dded6af..5cabb9b820 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -472,7 +472,7 @@ void ex_sort(exarg_T *eap) nrs[lnum - eap->line1].start_col_nr = -MAXLNUM; } else { vim_str2nr(s, NULL, NULL, sort_bin, sort_oct, sort_hex, - &nrs[lnum - eap->line1].start_col_nr, NULL); + &nrs[lnum - eap->line1].start_col_nr, NULL, 0); } *s2 = c; } else { |