diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-10-09 19:40:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-09 16:40:11 -0700 |
commit | 65b8232260a1e95f53c6bf704dfa02cdd3125262 (patch) | |
tree | ae067791b3acd085fb933359024ddf64dbd595b2 /runtime/lua/vim/ui.lua | |
parent | 5940a3415babfa0fdfeb6bcd165cc7c369a819a4 (diff) | |
download | rneovim-65b8232260a1e95f53c6bf704dfa02cdd3125262.tar.gz rneovim-65b8232260a1e95f53c6bf704dfa02cdd3125262.tar.bz2 rneovim-65b8232260a1e95f53c6bf704dfa02cdd3125262.zip |
vim-patch:8.2.{210,424,436,...} #15976
* vim-patch:8.2.1082: Coverity complains about ignoring dict_add() return value
Problem: Coverity complains about ignoring dict_add() return value.
Solution: Add (void).
https://github.com/vim/vim/commit/91639195eff7b29213a0a3c279ac46e46ac76edd
N/A patches for version.c:
vim-patch:8.2.0210: Coverity complains about uninitialized field
Problem: Coverity complains about uninitialized field.
Solution: Initialize the field.
https://github.com/vim/vim/commit/eed3571fe0f7d2ae779e5d36388cc4fe16c3516e
vim-patch:8.2.0424: checking for wrong return value
Problem: Checking for wrong return value. (Tom)
Solution: Invert the check and fix the test.
https://github.com/vim/vim/commit/97acfc781bdb7fa2838dc6e0e7f9952ea61bb2fd
vim-patch:8.2.0436: no warnings for incorrect printf arguments
Problem: No warnings for incorrect printf arguments.
Solution: Fix attribute in declaration. Fix uncovered mistakes. (Dominique
Pelle, closes vim/vim#5834)
https://github.com/vim/vim/commit/db99f9f29a248b84742b6779c3343123f72065e7
vim-patch:8.2.0498: Coverity complains about uninitialized field
Problem: Coverity complains about uninitialized field.
Solution: Initialize the whole typval_T.
https://github.com/vim/vim/commit/4227c789ffe667b74affab38a1b8bea27cd69b36
vim-patch:8.2.0668: compiler warning for int/size_t usage
Problem: Compiler warning for int/size_t usage.
Solution: Change "int" to "size_t". (Mike Williams)
https://github.com/vim/vim/commit/7f6f56f43c48f0b7288a4edd12b59fa7335f01d3
vim-patch:8.2.1034: compiler warning for uninitialized variables
Problem: Compiler warning for uninitialized variables.
Solution: Add initializations. (John Marriott)
https://github.com/vim/vim/commit/38041da1c263f5840f21e15484d7ccb30999ed62
vim-patch:8.2.1117: Coverity warns for unsing unitialized field
Problem: Coverity warns for unsing unitialized field.
Solution: Initialize v_lock.
https://github.com/vim/vim/commit/a9a8e5f0dc22aaa9e53578b5b2d7569279e6cb94
vim-patch:8.2.1148: warning for using int instead of size_t
Problem: Warning for using int instead of size_t.
Solution: Change "len" argument to size_t. (Mike Williams)
https://github.com/vim/vim/commit/cbb6bdcd8967edc8ad123746d27ec30ccc7c1718
vim-patch:8.2.1251: Vim9: warning for pointer usage, test failure undetected
Problem: Vim9: warning for pointer usage, test failure undetected.
Solution: Fix pointer indirection. Give error when executing function
failed for any reason. Fix instruction names.
https://github.com/vim/vim/commit/682d0a15462f3d4f9404e98a56b340ae131cbb09
printable_func_name() is applicable but the vim9 changes are N/A.
Compilers can detect misuse of static functions.
vim-patch:8.2.1275: Vim9: compiler warning for buffer size
Problem: Vim9: compiler warning for buffer size.
Solution: Change the offset from 10 to 15. (Dominique Pellé, closes vim/vim#6518)
https://github.com/vim/vim/commit/5a67c37a554daa7627bdf0c8e7ddd5f1b597f978
vim-patch:8.2.1443: Vim9: crash when interrupting a nested :def function
Problem: Vim9: crash when interrupting a nested :def function.
Solution: Push a dummy return value onto the stack. (closes vim/vim#6701)
https://github.com/vim/vim/commit/cdd70f09a5340c3d7ae873f1aaaf9847f27410cc
vim-patch:8.2.1818: SE Linux: deprecation warning for security_context_t
Problem: SE Linux: deprecation warning for security_context_t.
Solution: Use "char *" instead. (James McCoy, closes vim/vim#7093)
https://github.com/vim/vim/commit/8956023920bb1b6f9c381739e59b9ddab4bf7798
SELINUX support was removed in commit 1de77bbcec8ea4e50475e9b33986246e47614b84
vim-patch:8.2.2004: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable.
Solution: Initialize "ufunc". (John Marriott)
https://github.com/vim/vim/commit/b3a01946b30f33e7be0358b3ff2736b94973a659
vim-patch:8.2.2051: Vim9: crash when aborting a user function call
Problem: Vim9: crash when aborting a user function call.
Solution: Do not use the return value when aboring. (closes vim/vim#7372)
https://github.com/vim/vim/commit/34c54eb6cbda5dbc14376c8b1c62ad11d4852793
vim-patch:8.2.2270: warning for size_t to int conversion
Problem: Warning for size_t to int conversion. (Randall W. Morris)
Solution: Add a type cast.
https://github.com/vim/vim/commit/38a434f7ba89ab2602019476219780e07fd8251f
vim-patch:8.2.2333: Vim9: warning for uninitialized variable
Problem: Vim9: warning for uninitialized variable. (Tony Mechelynck)
Solution: Initialize "res".
https://github.com/vim/vim/commit/cb6cbf29e97b7abdeb1e6cbdc5e735f5b55e97a1
vim-patch:8.2.2460: Coverity warns for unused value
Problem: Coverity warns for unused value.
Solution: Do not reset the return value to OK.
https://github.com/vim/vim/commit/fc1dafa91cbf7876d711e8e36171eeec78eae13b
vim-patch:8.2.2461: Coverity warns for unchecked return value
Problem: Coverity warns for unchecked return value.
Solution: Add "(void)" to avoid the warning.
https://github.com/vim/vim/commit/fef8064b54ad0b1a7ce2f9cf024526627e6bdf57
vim-patch:8.2.2557: compiler warning for shadowd variable
Problem: Compiler warning for shadowd variable.
Solution: Declare "p" only once.
https://github.com/vim/vim/commit/087b5ff35d219f4f48a3d4854783799d0f6a1732
vim-patch:8.2.2730: Coverity complains about not restoring character
Problem: Coverity complains about not restoring character.
Solution: Also restore the character in case of an error.
https://github.com/vim/vim/commit/c9605f0595173bca0f158f2782de950ac6bed147
vim-patch:8.2.2795: Coverity warns for not using return value
Problem: Coverity warns for not using return value.
Solution: Check the return value of compiling the substitute expression.
https://github.com/vim/vim/commit/169502fb0beb7eb21f72d6c4590483c069353b53
vim-patch:8.2.2995: linker errors with dynamic Python 3.10
Problem: Linker errors with dynamic Python 3.10.
Solution: Add a couple of library entries. (Zdenek Dohnal, closes vim/vim#8381,
closes vim/vim#8356)
https://github.com/vim/vim/commit/90478f35a8c78e2e10a4b4a8f135998dc04c91fa
vim-patch:8.2.3000: Vim9: warning for uninitialized variable
Problem: Vim9: warning for uninitialized variable.
Solution: Add initialization. (John Marriott)
https://github.com/vim/vim/commit/3b814af7e1e7ca18fe1c8c671b18e5e8c1f9e94c
vim-patch:8.2.3014: Coverity warns for freeing static string
Problem: Coverity warns for freeing static string.
Solution: Do not assign static string to pointer. (Dominique Pellé,
closes vim/vim#8397)
https://github.com/vim/vim/commit/6e9695525e212466398a269a54bc4d53625673f0
vim-patch:8.2.3205: Coverity reports a null pointer dereference
Problem: Coverity reports a null pointer dereference.
Solution: Change the logic to avoid Coverity gets confused.
https://github.com/vim/vim/commit/1b862c466ba4242857eec581f67982d265005ef4
vim-patch:8.2.3294: Lua: memory leak when adding dict item fails
Problem: Lua: memory leak when adding dict item fails.
Solution: Free the typval and the dict item.
https://github.com/vim/vim/commit/1b6acf02b7e685ecb87ccba52c91835a7519073e
vim-patch:8.2.3302: Coverity is not run from github
Problem: Coverity is not run from github.
Solution: Add a coverity script. (James McCoy, closes vim/vim#8714)
https://github.com/vim/vim/commit/d57a6bd98c9a57b766eadcc3f10e9c4169c788aa
vim-patch:8.2.3319: Coverity action on github does not work
Problem: Coverity action on github does not work.
Solution: Remove undefined $SRCDIR. (James McCoy, closes vim/vim#8739)
https://github.com/vim/vim/commit/eed9616120f60ad17d5e133f505bba5c559aee89
* vim-patch:8.2.1085: Coverity complains about ignoring dict_add() return value
Problem: Coverity complains about ignoring dict_add() return value.
Solution: Add (void).
https://github.com/vim/vim/commit/6d90c61c5a6437ff5058b6c5874ba71bff574e60
Diffstat (limited to 'runtime/lua/vim/ui.lua')
0 files changed, 0 insertions, 0 deletions