From 20ad69ccfb60ef718bd26387ef0e5424461a643e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 13:52:52 +0100 Subject: [PATCH 1/6] patch 7.4.948 Problem: Can't build when the insert_expand feature is disabled. Solution: Add #ifdefs. (Dan Pasanen, closes #499) --- src/eval.c | 2 ++ src/fileio.c | 2 ++ src/version.c | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/eval.c b/src/eval.c index a2a99869e6..7ec7364a74 100644 --- a/src/eval.c +++ b/src/eval.c @@ -8748,7 +8748,9 @@ call_func(funcname, len, rettv, argcount, argvars, firstline, lastline, * redo buffer. */ save_search_patterns(); +#ifdef FEAT_INS_EXPAND if (!ins_compl_active()) +#endif { saveRedobuff(); did_save_redo = TRUE; diff --git a/src/fileio.c b/src/fileio.c index 20c0294988..ded95b728a 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -9450,7 +9450,9 @@ apply_autocmds_group(event, fname, fname_io, force, group, buf, eap) if (!autocmd_busy) { save_search_patterns(); +#ifdef FEAT_INS_EXPAND if (!ins_compl_active()) +#endif { saveRedobuff(); did_save_redobuff = TRUE; diff --git a/src/version.c b/src/version.c index a8526bf674..306f01c91b 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 948, /**/ 947, /**/ From 32a214e78df0120f92fe049eab1385c60f0cdb0b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 14:29:02 +0100 Subject: [PATCH 2/6] patch 7.4.949 Problem: When using 'colorcolumn' and there is a sign with a fullwidth character the highlighting is wrong. (Andrew Stewart) Solution: Only increment vcol when in the right state. (Christian Brabandt) --- src/screen.c | 7 ++++++- src/testdir/test_listlbr_utf8.in | 35 +++++++++++++++++++++++++++++++- src/testdir/test_listlbr_utf8.ok | 12 +++++++++++ src/version.c | 2 ++ 4 files changed, 54 insertions(+), 2 deletions(-) diff --git a/src/screen.c b/src/screen.c index d80ad6f96e..581638157c 100644 --- a/src/screen.c +++ b/src/screen.c @@ -5422,7 +5422,12 @@ win_line(wp, lnum, startrow, endrow, nochange) else /* DBCS: Put second byte in the second screen char. */ ScreenLines[off] = mb_c & 0xff; - ++vcol; + if (draw_state > WL_NR +#ifdef FEAT_DIFF + && filler_todo <= 0 +#endif + ) + ++vcol; /* When "tocol" is halfway a character, set it to the end of * the character, otherwise highlighting won't stop. */ if (tocol == vcol) diff --git a/src/testdir/test_listlbr_utf8.in b/src/testdir/test_listlbr_utf8.in index 61bb8a71b3..c8bbe103c9 100644 --- a/src/testdir/test_listlbr_utf8.in +++ b/src/testdir/test_listlbr_utf8.in @@ -2,7 +2,7 @@ Test for linebreak and list option in utf-8 mode STARTTEST :so small.vim -:if !exists("+linebreak") || !has("conceal") | e! test.ok | w! test.out | qa! | endif +:if !exists("+linebreak") || !has("conceal") || !has("signs") | e! test.ok | w! test.out | qa! | endif :so mbyte.vim :if &enc !=? 'utf-8'|:e! test.ok|:w! test.out|qa!|endif :10new|:vsp|:vert resize 20 @@ -25,6 +25,7 @@ STARTTEST : $put =g:line : wincmd p :endfu +:" :let g:test ="Test 1: set linebreak + set list + fancy listchars" :exe "set linebreak list listchars=nbsp:\u2423,tab:\u2595\u2014,trail:\u02d1,eol:\ub6" :redraw! @@ -45,6 +46,7 @@ STARTTEST :redraw! :let line=ScreenChar(winwidth(0),4) :call DoRecordScreen() +:" :let g:test ="Test 4: set linebreak list listchars and concealing" :let c_defines=['#define ABCDE 1','#define ABCDEF 1','#define ABCDEFG 1','#define ABCDEFGH 1', '#define MSG_MODE_FILE 1','#define MSG_MODE_CONSOLE 2','#define MSG_MODE_FILE_AND_CONSOLE 3','#define MSG_MODE_FILE_THEN_CONSOLE 4'] :call append('$', c_defines) @@ -56,6 +58,7 @@ STARTTEST :redraw! :let line=ScreenChar(winwidth(0),7) :call DoRecordScreen() +:" :let g:test ="Test 5: set linebreak list listchars and concealing part2" :let c_defines=['bbeeeeee ; some text'] :call append('$', c_defines) @@ -74,6 +77,7 @@ STARTTEST :redraw! :let line=ScreenChar(winwidth(0),1) :call DoRecordScreen() +:" :let g:test ="Test 6: Screenattributes for comment" :$put =g:test :call append('$', ' /* and some more */') @@ -92,10 +96,39 @@ GGlGGlGGlGGlGGlGGlGGlGGlGGlGGl : call append('$', "Not all attributes are different") :endif :set cpo&vim linebreak selection=exclusive +:" :let g:test ="Test 8: set linebreak with visual block mode and v_b_A and selection=exclusive and multibyte char" :$put =g:test Golong line: 40afoobar aTARGETÃ' at end :exe "norm! $3B\eAx\" +:" +:let g:test ="Test 9: a multibyte sign and colorcolumn" +:let attr=[] +:let attr2=[] +:$put ='' +:$put ='a b c' +:$put ='a b c' +:set list nolinebreak cc=3 +:sign define foo text=+ +:sign place 1 name=foo line=50 buffer=2 +:norm! 2kztj +:let line1=line('.') +0GGlGGlGGlGGl +:let line2=line('.') +:let attr2=attr +:let attr=[] +0GGlGGlGGlGGl +:redraw! +:let line=ScreenChar(winwidth(0),3) +:call DoRecordScreen() +:call append('$', ['ScreenAttributes for test9:']) +:call append('$', ["Line: ".line1. " ". string(g:attr),"Line: ".line2. " ". string(g:attr2)]) +:" expected: attr[2] is different because of colorcolumn +:if attr[0] != attr2[0] || attr[1] != attr2[1] || attr[2] != attr2[2] +: call append('$', "Screen attributes are different!") +:else +: call append('$', "Screen attributes are the same!") +:endif :%w! test.out :qa! ENDTEST diff --git a/src/testdir/test_listlbr_utf8.ok b/src/testdir/test_listlbr_utf8.ok index 25316c7531..490f1a1080 100644 --- a/src/testdir/test_listlbr_utf8.ok +++ b/src/testdir/test_listlbr_utf8.ok @@ -46,3 +46,15 @@ ScreenAttributes for test6: Attribut 0 and 1 and 3 and 5 are different! Test 8: set linebreak with visual block mode and v_b_A and selection=exclusive and multibyte char long line: foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar foobar TARGETÃx' at end + +a b c +a b c + +Test 9: a multibyte sign and colorcolumn + ¶ ++a b c¶ + a b c¶ +ScreenAttributes for test9: +Line: 50 ['0', '0', '72', '0'] +Line: 51 ['0', '0', '72', '0'] +Screen attributes are the same! diff --git a/src/version.c b/src/version.c index 306f01c91b..90f08e9a89 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 949, /**/ 948, /**/ From 4649ded2877508fe343cbcf6f7e7fd277be0aab3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 14:55:55 +0100 Subject: [PATCH 3/6] patch 7.4.950 Problem: v:errors is not initialized. Solution: Initialze it to an empty list. (Thinca) --- src/eval.c | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/eval.c b/src/eval.c index 7ec7364a74..2d6c34b92a 100644 --- a/src/eval.c +++ b/src/eval.c @@ -900,6 +900,7 @@ eval_init() set_vim_var_nr(VV_SEARCHFORWARD, 1L); set_vim_var_nr(VV_HLSEARCH, 1L); set_vim_var_dict(VV_COMPLETED_ITEM, dict_alloc()); + set_vim_var_list(VV_ERRORS, list_alloc()); set_reg_var(0); /* default for v:register is not 0 but '"' */ #ifdef EBCDIC diff --git a/src/version.c b/src/version.c index 90f08e9a89..31273feb25 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 950, /**/ 949, /**/ From b00da1d6d1655cb6e415f84ecc3be5ff3b790811 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 16:33:12 +0100 Subject: [PATCH 4/6] patch 7.4.951 Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort() --- runtime/doc/eval.txt | 9 +++++++++ src/eval.c | 16 ++++++++++++++++ src/testdir/Makefile | 2 +- src/testdir/test_alot.vim | 5 +++++ src/testdir/test_sort.vim | 19 +++++++++++++++++++ src/version.c | 2 ++ 6 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 src/testdir/test_alot.vim create mode 100644 src/testdir/test_sort.vim diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 9442996be1..2e89098a66 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5803,6 +5803,10 @@ sort({list} [, {func} [, {dict}]]) *sort()* *E702* strtod() function to parse numbers, Strings, Lists, Dicts and Funcrefs will be considered as being 0). + When {func} is given and it is 'N' then all items will be + sorted numerical. This is like 'n' but a string containing + digits will be used as the number they represent. + When {func} is a |Funcref| or a function name, this function is called to compare items. The function is invoked with two items as argument and must return zero if they are equal, 1 or @@ -5817,6 +5821,11 @@ sort({list} [, {func} [, {dict}]]) *sort()* *E702* on numbers, text strings will sort next to each other, in the same order as they were originally. + The sort is stable, items which compare equal (as number or as + string) will keep their relative position. E.g., when sorting + on numbers, text strings will sort next to each other, in the + same order as they were originally. + Also see |uniq()|. Example: > diff --git a/src/eval.c b/src/eval.c index 2d6c34b92a..ef0ea5ee2b 100644 --- a/src/eval.c +++ b/src/eval.c @@ -17928,6 +17928,7 @@ typedef struct static int item_compare_ic; static int item_compare_numeric; +static int item_compare_numbers; static char_u *item_compare_func; static dict_T *item_compare_selfdict; static int item_compare_func_err; @@ -17958,6 +17959,15 @@ item_compare(s1, s2) si2 = (sortItem_T *)s2; tv1 = &si1->item->li_tv; tv2 = &si2->item->li_tv; + + if (item_compare_numbers) + { + long v1 = get_tv_number(tv1); + long v2 = get_tv_number(tv2); + + return v1 == v2 ? 0 : v1 > v2 ? 1 : -1; + } + /* tv2string() puts quotes around a string and allocates memory. Don't do * that for string variables. Use a single quote when comparing with a * non-string to do what the docs promise. */ @@ -18091,6 +18101,7 @@ do_sort_uniq(argvars, rettv, sort) item_compare_ic = FALSE; item_compare_numeric = FALSE; + item_compare_numbers = FALSE; item_compare_func = NULL; item_compare_selfdict = NULL; if (argvars[1].v_type != VAR_UNKNOWN) @@ -18116,6 +18127,11 @@ do_sort_uniq(argvars, rettv, sort) item_compare_func = NULL; item_compare_numeric = TRUE; } + else if (STRCMP(item_compare_func, "N") == 0) + { + item_compare_func = NULL; + item_compare_numbers = TRUE; + } else if (STRCMP(item_compare_func, "i") == 0) { item_compare_func = NULL; diff --git a/src/testdir/Makefile b/src/testdir/Makefile index 3f65f435df..c7db9495e5 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -69,7 +69,7 @@ SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \ test_writefile.out NEW_TESTS = test_assert.res \ - test_undolevels.res + test_alot.res SCRIPTS_GUI = test16.out diff --git a/src/testdir/test_alot.vim b/src/testdir/test_alot.vim new file mode 100644 index 0000000000..97635095b9 --- /dev/null +++ b/src/testdir/test_alot.vim @@ -0,0 +1,5 @@ +" A series of tests that can run in one Vim invocation. +" This makes testing go faster, since Vim doesn't need to restart. + +source test_undolevels.vim +source test_sort.vim diff --git a/src/testdir/test_sort.vim b/src/testdir/test_sort.vim new file mode 100644 index 0000000000..30dd167cd6 --- /dev/null +++ b/src/testdir/test_sort.vim @@ -0,0 +1,19 @@ +" Test sort() + +func Test_sort_strings() + " numbers compared as strings + call assert_equal([1, 2, 3], sort([3, 2, 1])) + call assert_equal([13, 28, 3], sort([3, 28, 13])) +endfunc + +func Test_sort_numeric() + call assert_equal([1, 2, 3], sort([3, 2, 1], 'n')) + call assert_equal([3, 13, 28], sort([13, 28, 3], 'n')) + " strings are not sorted + call assert_equal(['13', '28', '3'], sort(['13', '28', '3'], 'n')) +endfunc + +func Test_sort_numbers() + call assert_equal([3, 13, 28], sort([13, 28, 3], 'N')) + call assert_equal(['3', '13', '28'], sort(['13', '28', '3'], 'N')) +endfunc diff --git a/src/version.c b/src/version.c index 31273feb25..4b2a1cbeb0 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 951, /**/ 950, /**/ From 6cd1345307440491580e5e86cb82c54ee9a46baa Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 16:54:53 +0100 Subject: [PATCH 5/6] patch 7.4.952 Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'. --- src/testdir/Make_amiga.mak | 3 +-- src/testdir/Make_dos.mak | 2 +- src/testdir/Make_ming.mak | 2 +- src/testdir/Make_os2.mak | 2 +- src/testdir/Make_vms.mms | 4 ++-- src/testdir/Makefile | 2 +- src/testdir/test100.in | 16 ---------------- src/testdir/test100.ok | 10 ---------- src/testdir/test_alot.vim | 3 ++- src/testdir/test_lispwords.vim | 16 ++++++++++++++++ src/version.c | 2 ++ 11 files changed, 27 insertions(+), 35 deletions(-) delete mode 100644 src/testdir/test100.in delete mode 100644 src/testdir/test100.ok create mode 100644 src/testdir/test_lispwords.vim diff --git a/src/testdir/Make_amiga.mak b/src/testdir/Make_amiga.mak index b4a5d8e099..d60f1a1bbe 100644 --- a/src/testdir/Make_amiga.mak +++ b/src/testdir/Make_amiga.mak @@ -34,7 +34,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ test81.out test82.out test83.out test84.out test88.out \ test89.out test90.out test91.out test92.out test93.out \ test94.out test95.out test96.out test97.out test98.out \ - test99.out test100.out test101.out test102.out test103.out \ + test99.out test101.out test102.out test103.out \ test104.out test105.out test106.out test107.out \ test_argument_0count.out \ test_argument_count.out \ @@ -185,7 +185,6 @@ test96.out: test96.in test97.out: test97.in test98.out: test98.in test99.out: test99.in -test100.out: test100.in test101.out: test101.in test102.out: test102.in test103.out: test103.in diff --git a/src/testdir/Make_dos.mak b/src/testdir/Make_dos.mak index 208f4fbd4a..8dbe97e2f1 100644 --- a/src/testdir/Make_dos.mak +++ b/src/testdir/Make_dos.mak @@ -33,7 +33,7 @@ SCRIPTS = test3.out test4.out test5.out test6.out test7.out \ test84.out test85.out test86.out test87.out test88.out \ test89.out test90.out test91.out test92.out test93.out \ test94.out test95.out test96.out test98.out test99.out \ - test100.out test101.out test102.out test103.out test104.out \ + test101.out test102.out test103.out test104.out \ test105.out test106.out test107.out\ test_argument_0count.out \ test_argument_count.out \ diff --git a/src/testdir/Make_ming.mak b/src/testdir/Make_ming.mak index bfbb5c23e2..a7c98ee8dc 100644 --- a/src/testdir/Make_ming.mak +++ b/src/testdir/Make_ming.mak @@ -55,7 +55,7 @@ SCRIPTS = test3.out test4.out test5.out test6.out test7.out \ test84.out test85.out test86.out test87.out test88.out \ test89.out test90.out test91.out test92.out test93.out \ test94.out test95.out test96.out test98.out test99.out \ - test100.out test101.out test102.out test103.out test104.out \ + test101.out test102.out test103.out test104.out \ test105.out test106.out test107.out \ test_argument_0count.out \ test_argument_count.out \ diff --git a/src/testdir/Make_os2.mak b/src/testdir/Make_os2.mak index a0fd3a0ffa..926411b648 100644 --- a/src/testdir/Make_os2.mak +++ b/src/testdir/Make_os2.mak @@ -35,7 +35,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ test81.out test82.out test83.out test84.out test88.out \ test89.out test90.out test91.out test92.out test93.out \ test94.out test95.out test96.out test98.out test99.out \ - test100.out test101.out test102.out test103.out test104.out \ + test101.out test102.out test103.out test104.out \ test105.out test106.out test107.out \ test_argument_0count.out \ test_argument_count.out \ diff --git a/src/testdir/Make_vms.mms b/src/testdir/Make_vms.mms index 1817da6b91..990ae5f572 100644 --- a/src/testdir/Make_vms.mms +++ b/src/testdir/Make_vms.mms @@ -4,7 +4,7 @@ # Authors: Zoltan Arpadffy, # Sandor Kopanyi, # -# Last change: 2015 Sep 08 +# Last change: 2015 Dec 03 # # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64. # Edit the lines in the Configuration section below to select. @@ -94,7 +94,7 @@ SCRIPT = test1.out test2.out test3.out test4.out test5.out \ test82.out test84.out test88.out test89.out \ test90.out test91.out test92.out test93.out test94.out \ test95.out test96.out test98.out test99.out \ - test100.out test101.out test103.out test104.out \ + test101.out test103.out test104.out \ test105.out test106.out test107.out \ test_argument_0count.out \ test_argument_count.out \ diff --git a/src/testdir/Makefile b/src/testdir/Makefile index c7db9495e5..932150697c 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -31,7 +31,7 @@ SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \ test84.out test85.out test86.out test87.out test88.out \ test89.out test90.out test91.out test92.out test93.out \ test94.out test95.out test96.out test97.out test98.out \ - test99.out test100.out test101.out test102.out test103.out \ + test99.out test101.out test102.out test103.out \ test104.out test105.out test106.out test107.out \ test_argument_0count.out \ test_argument_count.out \ diff --git a/src/testdir/test100.in b/src/testdir/test100.in deleted file mode 100644 index 9b140a4d27..0000000000 --- a/src/testdir/test100.in +++ /dev/null @@ -1,16 +0,0 @@ -Tests for 'lispwords' settings being global-local - -STARTTEST -:so small.vim -:set nocompatible viminfo+=nviminfo -:" -:" Testing 'lispwords' -:" -:setglobal lispwords=foo,bar,baz -:setlocal lispwords-=foo | setlocal lispwords+=quux -:redir >> test.out | echon "\nTesting 'lispwords' local value" | setglobal lispwords? | setlocal lispwords? | echo &lispwords . "\n" | redir end -:setlocal lispwords< -:redir >> test.out | echon "\nTesting 'lispwords' value reset" | setglobal lispwords? | setlocal lispwords? | echo &lispwords . "\n" | redir end -:qa! -ENDTEST - diff --git a/src/testdir/test100.ok b/src/testdir/test100.ok deleted file mode 100644 index 4048dee4c6..0000000000 --- a/src/testdir/test100.ok +++ /dev/null @@ -1,10 +0,0 @@ - -Testing 'lispwords' local value - lispwords=foo,bar,baz - lispwords=bar,baz,quux -bar,baz,quux - -Testing 'lispwords' value reset - lispwords=foo,bar,baz - lispwords=foo,bar,baz -foo,bar,baz diff --git a/src/testdir/test_alot.vim b/src/testdir/test_alot.vim index 97635095b9..21a524116b 100644 --- a/src/testdir/test_alot.vim +++ b/src/testdir/test_alot.vim @@ -1,5 +1,6 @@ " A series of tests that can run in one Vim invocation. " This makes testing go faster, since Vim doesn't need to restart. -source test_undolevels.vim +source test_lispwords.vim source test_sort.vim +source test_undolevels.vim diff --git a/src/testdir/test_lispwords.vim b/src/testdir/test_lispwords.vim new file mode 100644 index 0000000000..6d370a8bfe --- /dev/null +++ b/src/testdir/test_lispwords.vim @@ -0,0 +1,16 @@ +" Tests for 'lispwords' settings being global-local + +set nocompatible viminfo+=nviminfo + +func Test_global_local_lispwords() + setglobal lispwords=foo,bar,baz + setlocal lispwords-=foo | setlocal lispwords+=quux + call assert_equal('foo,bar,baz', &g:lispwords) + call assert_equal('bar,baz,quux', &l:lispwords) + call assert_equal('bar,baz,quux', &lispwords) + + setlocal lispwords< + call assert_equal('foo,bar,baz', &g:lispwords) + call assert_equal('foo,bar,baz', &l:lispwords) + call assert_equal('foo,bar,baz', &lispwords) +endfunc diff --git a/src/version.c b/src/version.c index 4b2a1cbeb0..887a2cba49 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 952, /**/ 951, /**/ From de0ad40cb3c1bc691a754698ed16a5b6cdb4086b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 17:21:28 +0100 Subject: [PATCH 6/6] patch 7.4.953 Problem: When a test script navigates to another buffer the .res file is created with the wrong name. Solution: Use the "testname" for the .res file. (Damien) --- src/testdir/runtest.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim index 8589bf6935..0dc142eb97 100644 --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -76,7 +76,7 @@ endfor if fail == 0 " Success, create the .res file so that make knows it's done. - split %:r.res + exe 'split ' . fnamemodify(testname, ':r') . '.res' write endif diff --git a/src/version.c b/src/version.c index 887a2cba49..3cdc86fa74 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 953, /**/ 952, /**/