diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-07-17 13:03:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-07-17 13:03:48 +0200 |
commit | 5d1bc78a2b9fbe3e3112afcde7c80eb19d5989f4 (patch) | |
tree | 5063777a3da9f1820380678fb550a554d55b7081 /src/ex_cmds.c | |
parent | fe6f18687761403470979feef8fe8ce582ae3b60 (diff) | |
download | vim-5d1bc78a2b9fbe3e3112afcde7c80eb19d5989f4.zip |
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)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index a238e2d1d..637c8a07a 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -500,7 +500,7 @@ ex_sort(eap) nrs[lnum - eap->line1].start_col_nr = -MAXLNUM; else vim_str2nr(s, NULL, NULL, sort_oct, sort_hex, - &nrs[lnum - eap->line1].start_col_nr, NULL); + &nrs[lnum - eap->line1].start_col_nr, NULL, 0); *s2 = c; } else |