Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: mmisono/vim

Tags

v8.0.0172

Toggle v8.0.0172's commit message
patch 8.0.0172: command line window does not work

Problem:    The command selected in the command line window is not executed.
            (Andrey Starodubtsev)
Solution:   Save and restore the command line at a lower level. (closes vim#1370)

v8.0.0171

Toggle v8.0.0171's commit message
patch 8.0.0171: JS style JSON does not support single quotes

Problem:    JS style JSON does not support single quotes.
Solution:   Allow for single quotes. (Yasuhiro Matsumoto, closes vim#1371)

v8.0.0170

Toggle v8.0.0170's commit message
patch 8.0.0170: crash in channel test

Problem:    Channel test fails for using freed memory.
Solution:   Fix memory use in json_decode().

v8.0.0169

Toggle v8.0.0169's commit message
patch 8.0.0169: json_decode() may run out of stack space

Problem:    For complicated string json_decode() may run out of stack space.
Solution:   Change the recursive solution into an iterative solution.

v8.0.0168

Toggle v8.0.0168's commit message
patch 8.0.0168: not all float functionality is tested

Problem:    Still some float functionality is not covered by tests.
Solution:   Add more tests. (Dominique Pelle, closes vim#1364)

v8.0.0167

Toggle v8.0.0167's commit message
patch 8.0.0167: str2nr()/str2float() fail with negative values

Problem:    str2nr() and str2float() do not always work with negative values.
Solution:   Be more flexible about handling signs. (LemonBoy, closes vim#1332)
            Add more tests.

v8.0.0166

Toggle v8.0.0166's commit message
patch 8.0.0166: JSON with a duplicate key gives an internal error

Problem:    JSON with a duplicate key gives an internal error. (Lcd)
Solution:   Give a normal error.  Avoid an error when parsing JSON from a
            remote client fails.

v8.0.0165

Toggle v8.0.0165's commit message
patch 8.0.0165: ubsan warns for integer overflow

Problem:    Ubsan warns for integer overflow.
Solution:   Swap two conditions. (Dominique Pelle)

v8.0.0164

Toggle v8.0.0164's commit message
patch 8.0.0164: outdated and misplaced comments

Problem:    Outdated and misplaced comments.
Solution:   Fix the comments.

v8.0.0163

Toggle v8.0.0163's commit message
patch 8.0.0163: cannot build with Ruby 2.4

Problem:    Ruby 2.4 no longer supports rb_cFixnum.
Solution:   move rb_cFixnum into an #ifdef. (Kazuki Sakamoto, closes vim#1365)