diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-06-25 17:31:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-06-25 17:31:09 +0200 |
commit | e8a3492548468c9d055adeb9f8d352e2c4482b19 (patch) | |
tree | 1524f2de443058cd35f153b6345e755338d6162b /src/testdir/test55.ok | |
parent | 72e8f0bcc1311aaec8949ddd9c0d0515c03ca3e0 (diff) | |
download | vim-e8a3492548468c9d055adeb9f8d352e2c4482b19.zip |
updated for version 7.4.341
Problem: sort() doesn't handle numbers well.
Solution: Add an argument to specify sorting on numbers. (Christian Brabandt)
Diffstat (limited to 'src/testdir/test55.ok')
-rw-r--r-- | src/testdir/test55.ok | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test55.ok b/src/testdir/test55.ok index be476e8e9..901bc9406 100644 --- a/src/testdir/test55.ok +++ b/src/testdir/test55.ok @@ -101,6 +101,10 @@ caught a:000[3] [[0, 1, 2], [0, 1, 2], 4, 2, 2, 1.5, 'xaaa', 'x8', 'foo6', 'foo', 'foo', 'A11', '-0'] ['-0', 'A11', 'foo', 'foo', 'foo6', 'x8', 'xaaa', 1.5, 2, 2, 4, [0, 1, 2], [0, 1, 2]] ['-0', 'A11', 'foo', 'foo6', 'x8', 'xaaa', 1.5, 2, 4, [0, 1, 2]] +[-1, 0, 0, 'foo', 'FOOBAR', {}, [], 1.0e-15, 0.22, 7, 9, 12, 18, 22, 255] +['foo', 'FOOBAR', -1, 0, 0, 0.22, 1.0e-15, 12, 18, 22, 255, 7, 9, [], {}] +['foo', 'FOOBAR', -1, 0, 0, 0.22, 1.0e-15, 12, 18, 22, 255, 7, 9, [], {}] +['FOOBAR', 'foo', -1, 0, 0, 0.22, 1.0e-15, 12, 18, 22, 255, 7, 9, [], {}] ['aa', 'bb'] ['aa', 'bb'] ['', 'aa', 'bb', ''] |