]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.2276: list of distributed files is outdated v8.2.2276
authorBram Moolenaar <Bram@vim.org>
Sat, 2 Jan 2021 15:53:13 +0000 (16:53 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 2 Jan 2021 15:53:13 +0000 (16:53 +0100)
Problem:    List of distributed files is outdated.
Solution:   Update the file list.  Minor comment updates.

Filelist
src/clipboard.c
src/fileio.c
src/option.c
src/screen.c
src/testdir/Make_vms.mms
src/testdir/test_signals.vim
src/version.c

index a8ee3415ebabbbb0906901802aa574eb04bc03ab..5151869e063bfb1a3d47e9660c57ec22bb3d3631 100644 (file)
--- a/Filelist
+++ b/Filelist
@@ -3,20 +3,23 @@
 
 # source files for all source archives
 SRC_ALL =      \
-               .gitignore \
+               .cirrus.yml \
+               .coveralls.yml
                .gitattributes \
+               .github/CODEOWNERS \
+               .github/workflows/ci.yml \
+               .github/workflows/codeql-analysis.yml \
+               .gitignore \
                .hgignore \
                .lgtm.yml \
                .travis.yml \
-               .cirrus.yml \
-               .github/workflows/ci.yml \
-               .github/workflows/codeql-analysis.yml \
-               .github/CODEOWNERS \
                appveyor.yml \
                ci/appveyor.bat \
+               ci/build-snd-dummy.sh \
+               ci/config.mk*.sed \
                ci/if_ver*.vim \
                ci/load-snd-dummy.sh \
-               ci/config.mk*.sed \
+               ci/setup-xvfb.sh \
                src/Make_all.mak \
                src/README.md \
                src/alloc.h \
index 3084ce187193fc599d507b63bc9f5671f3fb7330..c26349291eff11da45f831e49b64b00cf591d531 100644 (file)
@@ -2047,6 +2047,8 @@ clip_get_selection(Clipboard_T *cbd)
        ca.count1 = 1;
        ca.retval = CA_NO_ADJ_OP_END;
        do_pending_operator(&ca, 0, TRUE);
+
+       // restore things
        set_y_previous(old_y_previous);
        set_y_current(old_y_current);
        curwin->w_cursor = old_cursor;
index 66061680b08ed4d3faae638903780fb20dfe0f95..b3b7100d641b3dce1926ff5ee2ee7643d7026752 100644 (file)
@@ -2280,6 +2280,7 @@ failed:
     else
     {
        int fdflags = fcntl(fd, F_GETFD);
+
        if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
            (void)fcntl(fd, F_SETFD, fdflags | FD_CLOEXEC);
     }
index ca6fadb5041ad2e34f3eb75f109757cbcd0d1537..094a72354141f3c1652dd270adc245e191c4e3e8 100644 (file)
@@ -3835,7 +3835,7 @@ findoption(char_u *arg)
  *
  * Returns:
  * Number option: gov_number, *numval gets value.
- * Tottle option: gov_bool,   *numval gets value.
+ * Toggle option: gov_bool,   *numval gets value.
  * String option: gov_string, *stringval gets allocated string.
  * Hidden Number option: gov_hidden_number.
  * Hidden Toggle option: gov_hidden_bool.
index 7c6fe63e1ad8cb31db667b5b63646d041a45e819..60544b6e9663581a5ecd30607e35eabe76464727 100644 (file)
@@ -3087,7 +3087,6 @@ windgoto(int row, int col)
     // Can't use ScreenLines unless initialized
     if (ScreenLines == NULL)
        return;
-
     if (col != screen_cur_col || row != screen_cur_row)
     {
        // Check for valid position.
index 1e4f0d56f5a273d52cabaf5ba362144a1913b2a7..b6c6fabaedc4c84bb93a4daa78971496f599363f 100644 (file)
@@ -4,7 +4,7 @@
 # Authors:     Zoltan Arpadffy, <arpadffy@polarhome.com>
 #              Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
 #
-# Last change:  2020 Aug 13
+# Last change:  2020 Aug 14
 #
 # 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.
index 1723f33108d5b70dc7326298990de0be47bf2409..72fd024332558da22d88982d21fd3bf0fd53f494 100644 (file)
@@ -85,8 +85,8 @@ func Test_signal_INT()
     throw 'Skipped: INT signal not supported'
   endif
 
-  " Skip the rest of the test when running with valgrind as signal INT is not
-  " received somehow by Vim when running with valgrind.
+  " Skip the test when running with valgrind as signal INT is not received
+  " somehow by Vim when running with valgrind.
   let cmd = GetVimCommand()
   if cmd =~ 'valgrind'
     throw 'Skipped: cannot test signal INT with valgrind'
@@ -119,10 +119,6 @@ func Test_deadly_signal_TERM()
     throw 'Skipped: TERM signal not supported'
   endif
   CheckRunVimInTerminal
-  let cmd = GetVimCommand()
-  if cmd =~ 'valgrind'
-    throw 'Skipped: cannot test signal TERM with valgrind'
-  endif
 
   " If test fails once, it can leave temporary files and trying to rerun
   " the test would then fail again if they are not deleted first.
index e6df8768a302c354ecd6f5b6ed76b78f7e38c53a..b344129427ca4af053ab78a730382970bdbd2d0b 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2276,
 /**/
     2275,
 /**/