-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vim 67abf1592...aabca259f (15): > runtime(doc): minor typo fixes (#13548) > patch 9.0.2116: No test for defining sign without attribute > patch 9.0.2115: crash when callback function aborts because of recursiveness > patch 9.0.2114: overflow detection not accurate when adding digits > patch 9.0.2113: Coverity warns for another overflow in shift_line() > runtime(doc): Refactor doc-Makefiles (#13519) > runtime(doc): document proper notation of gVim, document vim-security list > translation(sr): Update Serbian messages translation (#13538) > patch 9.0.2112: [security]: overflow in shift_line > patch 9.0.2111: [security]: overflow in get_number > patch 9.0.2110: [security]: overflow in ex address parsing > patch 9.0.2109: [security]: overflow in nv_z_get_count > patch 9.0.2108: [security]: overflow with count for :s command > patch 9.0.2107: [security]: FPE in adjust_plines_for_skipcol > patch 9.0.2106: [security]: Use-after-free in win_close() https://github.com/vim/vim-appimage/actions/runs/6924091097
- Loading branch information
1 parent
e68170b
commit 246578e
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
29 files
+4 −4 | runtime/doc/change.txt | |
+2 −1 | runtime/doc/cmdline.txt | |
+2 −2 | runtime/doc/if_ole.txt | |
+6 −3 | runtime/doc/intro.txt | |
+2 −2 | runtime/doc/options.txt | |
+2 −0 | runtime/doc/tags | |
+30 −0 | runtime/lang/Make_all.mak | |
+516 −0 | runtime/lang/Make_mvc.mak | |
+91 −82 | runtime/lang/Makefile | |
+7 −0 | src/ex_cmds.c | |
+1 −1 | src/ex_docmd.c | |
+24 −1 | src/misc1.c | |
+3 −2 | src/move.c | |
+7 −1 | src/normal.c | |
+10 −7 | src/ops.c | |
+70 −23 | src/po/sr.po | |
+2 −0 | src/popupwin.c | |
+2 −0 | src/proto/misc1.pro | |
+ − | src/testdir/crash/poc1 | |
+33 −0 | src/testdir/test_crash.vim | |
+4 −0 | src/testdir/test_excmd.vim | |
+11 −0 | src/testdir/test_indent.vim | |
+5 −0 | src/testdir/test_normal.vim | |
+19 −0 | src/testdir/test_scroll_opt.vim | |
+5 −0 | src/testdir/test_signs.vim | |
+9 −0 | src/testdir/test_spell.vim | |
+1 −0 | src/testdir/test_substitute.vim | |
+22 −0 | src/version.c | |
+2 −0 | src/window.c |