vim-patch:8.2.2446: setting 'term' empty has different error if compiled with GUI

Problem:    Setting 'term' empty has different error if compiled with GUI.
Solution:   Insert "else". (closes vim/vim#7766)
5daa911626

N/A patches for version.c:

vim-patch:8.2.2437: deprecation warnings with default configuration

Problem:    Deprecation warnings with default configuration.
Solution:   Add -Wno-deprecated-declarations.
4d8479b335

vim-patch:8.2.2439: not easy to figure out what packages to get

Problem:    Not easy to figure out what packages to get when installing Vim on
            a new Ubuntu system.
Solution:   Mention explicit commands that are easy to follow.
3d2bb8b6f1

vim-patch:8.2.2442: automatic GUI selection does not check for GTK 3

Problem:    Automatic GUI selection does not check for GTK 3.
Solution:   Make SKIP_GTK3 empty for automatic GUI support.  Set SKIP_GTK3 to
            YES when checking for GTK2.
f272ae12ac

vim-patch:8.2.2448: compilation error with Ruby 3.0

Problem:    Compilation error with Ruby 3.0.
Solution:   Adjust #ifdefs and declaration. (Ken Takata, closes vim/vim#7761)
9d20daffc2
This commit is contained in:
Jan Edmund Lazo 2021-02-01 21:14:41 -05:00
parent cc1851c9fd
commit 2a6580a8e2
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -330,12 +330,10 @@ func Test_set_ttytype()
set ttytype=xterm set ttytype=xterm
call assert_equal('xterm', &ttytype) call assert_equal('xterm', &ttytype)
call assert_equal(&ttytype, &term) call assert_equal(&ttytype, &term)
" "set ttytype=" gives E522 instead of E529
" in travis on some builds. Why? Catch both for now
try try
set ttytype= set ttytype=
call assert_report('set ttytype= did not fail') call assert_report('set ttytype= did not fail')
catch /E529\|E522/ catch /E529/
endtry endtry
" Some systems accept any terminal name and return dumb settings, " Some systems accept any terminal name and return dumb settings,