2cfe0f29df
- Update to version 8.1.0887, fixes the following problems * Undo with text properties not tested. * setline() and setbufline() do not clear text properties. * Text properties are not adjusted for :substitute. * If a buffer was deleted a channel can't write to it. * Channel test fails sometimes. * When using text props may free memory that is not allocated. * Internal error when using :popup. * When test_edit fails 'insertmode' may not be reset and the next test may get stuck. (James McCoy) * ":sign place" requires the buffer argument. * Clearing the window is used too often, causing the command line to be cleared when opening a tab. (Miroslav Koškár) * Compiler warning for uninitialized variable. (Tony Mechelynck) * Using "gt" sometimes does not redraw a tab. (Jason Franklin) * Sign message not translated and inconsistent spacing. * ":sign place" only uses the current buffer. * Compiler warnings with 64-bit compiler. * Building with Ruby 2.6 gives compiler warnings. * :colorscheme isn't tested enough * Tabline is not always redrawn when something that is used in 'tabline' changes. * Text property columns are not adjusted for changed indent. * Third argument for redrawWinline() is always FALSE. * Windows are updated for every added/deleted sign. * When using timers may wait for job exit quite long. * Test files still use function!. * MS-Windows build instructions are a bit outdated. * Images for NSIS take up too much space. * Unessesary #if lines in GTK code. * Superfluous call to redraw_win_later(). * Get warning message when 'completefunc' returns nothing. * There is no function for the ":sign jump" command. OBS-URL: https://build.opensuse.org/request/show/672541 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=534
74 lines
2.2 KiB
Diff
74 lines
2.2 KiB
Diff
Index: vim-8.1.0877/src/testdir/test_alot.vim
|
|
===================================================================
|
|
--- vim-8.1.0877.orig/src/testdir/test_alot.vim
|
|
+++ vim-8.1.0877/src/testdir/test_alot.vim
|
|
@@ -37,14 +37,12 @@ source test_join.vim
|
|
source test_jumps.vim
|
|
source test_lambda.vim
|
|
source test_lispwords.vim
|
|
-source test_mapping.vim
|
|
source test_match.vim
|
|
source test_menu.vim
|
|
source test_messages.vim
|
|
source test_modeline.vim
|
|
source test_move.vim
|
|
source test_partial.vim
|
|
-source test_popup.vim
|
|
source test_put.vim
|
|
source test_recover.vim
|
|
source test_reltime.vim
|
|
@@ -61,7 +59,6 @@ source test_tabpage.vim
|
|
source test_tagcase.vim
|
|
source test_tagjump.vim
|
|
source test_taglist.vim
|
|
-source test_timers.vim
|
|
source test_true_false.vim
|
|
source test_unlet.vim
|
|
source test_virtualedit.vim
|
|
Index: vim-8.1.0877/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.1.0877.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.1.0877/src/testdir/Make_all.mak
|
|
@@ -190,7 +190,6 @@ NEW_TESTS = \
|
|
test_netbeans \
|
|
test_normal \
|
|
test_number \
|
|
- test_options \
|
|
test_packadd \
|
|
test_partial \
|
|
test_paste \
|
|
@@ -394,11 +393,8 @@ NEW_TESTS_RES = \
|
|
test_tab.res \
|
|
test_tcl.res \
|
|
test_termencoding.res \
|
|
- test_terminal.res \
|
|
- test_terminal_fail.res \
|
|
test_textformat.res \
|
|
test_textobjects.res \
|
|
- test_textprop.res \
|
|
test_undo.res \
|
|
test_user_func.res \
|
|
test_usercommands.res \
|
|
Index: vim-8.1.0877/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.1.0877.orig/src/testdir/Makefile
|
|
+++ vim-8.1.0877/src/testdir/Makefile
|
|
@@ -36,8 +36,6 @@ SCRIPTS = $(SCRIPTS_ALL) \
|
|
# Explicit dependencies.
|
|
test49.out: test49.vim
|
|
|
|
-test_options.res test_alot.res: opt_test.vim
|
|
-
|
|
SCRIPTS_BENCH = bench_re_freeze.out
|
|
|
|
.SUFFIXES: .in .out .res .vim
|
|
@@ -166,8 +164,5 @@ test_gui_init.res: test_gui_init.vim
|
|
$(RUN_VIMTEST) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $<
|
|
@rm vimcmd
|
|
|
|
-opt_test.vim: ../option.c gen_opt_test.vim
|
|
- $(VIMPROG) -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../option.c
|
|
-
|
|
test_xxd.res:
|
|
XXD=$(XXDPROG); export XXD; $(RUN_VIMTEST) $(NO_INITS) -S runtest.vim test_xxd.vim
|