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

Skip to content

Tags: anonherov/vim

Tags

v8.2.4046

Toggle v8.2.4046's commit message
patch 8.2.4046: some error messages not in the right place

Problem:    Some error messages not in the right place.
Solution:   Adjust the errors file.  Fix typo.

v8.2.4045

Toggle v8.2.4045's commit message
patch 8.2.4045: some global functions are only used in one file

Problem:    Some global functions are only used in one file.
Solution:   Make the functions static. (Yegappan Lakshmanan, closes vim#9492)

v8.2.4044

Toggle v8.2.4044's commit message
patch 8.2.4044: Vim9: no error when importing the same script twice

Problem:    Vim9: no error when importing the same script twice.
Solution:   Give an error, unless it is a reload.

v8.2.4043

Toggle v8.2.4043's commit message
patch 8.2.4043: using int for second argument of ga_init2()

Problem:    Using int for second argument of ga_init2().
Solution:   Remove unnessary type cast (int) when using sizeof().

v8.2.4042

Toggle v8.2.4042's commit message
patch 8.2.4042: Vim9: build error

Problem:    Vim9: build error.
Solution:   Use grow array instead of character pointer.

v8.2.4041

Toggle v8.2.4041's commit message
patch 8.2.4041: using unitialized pointer

Problem:    Using unitialized pointer.
Solution:   Store "ht" when variable is in another script.

v8.2.4040

Toggle v8.2.4040's commit message
patch 8.2.4040: keeping track of allocated lines is too complicated

Problem:    Keeping track of allocated lines in user functions is too
            complicated.
Solution:   Instead of freeing individual lines keep them all until the end.

v8.2.4039

Toggle v8.2.4039's commit message
patch 8.2.4039: the xdiff library is linked in even when not used

Problem:    The xdiff library is linked in even when not used.
Solution:   Use configure to decide whether xdiff object files are included.

v8.2.4038

Toggle v8.2.4038's commit message
patch 8.2.4038: various code not used when features are disabled

Problem:    Various code not used when features are disabled.
Solution:   Add #ifdefs. (Dominique Pellé, closes vim#9491)

v8.2.4037

Toggle v8.2.4037's commit message
patch 8.2.4037: Insert mode completion is insufficiently tested

Problem:    Insert mode completion is insufficiently tested.
Solution:   Add more tests.  Fix uncovered memory leak. (Yegappan Lakshmanan,
            closes vim#9489)