- patchlevel 0045

This commit is contained in:
Karsten Hopp 2016-10-19 10:58:17 +02:00
parent defe085ca4
commit 4b18daaa82
4 changed files with 214 additions and 105 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
/vim-7.4-2342.tar.bz2
/vim-8.0-003.tar.bz2
/vim-8.0-018.tar.bz2
/vim-8.0-037.tar.bz2

View File

@ -1,9 +1,212 @@
commit a24b70db343ff0872a314d076c8a9cf437530495
Merge: 550c699 ec68a99
Author: Karsten Hopp <karsten@redhat.com>
Date: Thu Oct 6 18:37:07 2016 +0200
commit bb09ceb95477ecc271854b3fdd8d2776eca66adf
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 18 16:27:23 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
patch 8.0.0045
Problem: Calling job_stop() right after job_start() does not work.
Solution: Block signals while fork is still busy. (Ozaki Kiichi, closes
#1155)
commit 025e3e0bafbc85cc4e365145af711edf99d0a90d
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 18 14:50:18 2016 +0200
patch 8.0.0044
Problem: In diff mode the cursor may end up below the last line, resulting
in an ml_get error.
Solution: Check the line to be valid.
commit 9ec7fa82a2c4f0283862ed704c2940959e6130ee
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 18 13:06:41 2016 +0200
patch 8.0.0043
Problem: When using Insert mode completion with 'completeopt' containing
"noinsert" with CTRL-N the change is not saved for undo. (Tommy
Allen)
Solution: Call stop_arrow() before inserting for any key.
commit cbd3bd6cbed5baf418b037b17ad46e339ff59174
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Oct 17 20:47:02 2016 +0200
patch 8.0.0042
Problem: When using Insert mode completion with 'completeopt' containing
"noinsert" change is not saved for undo. (Tommy Allen)
Solution: Call stop_arrow() before inserting for pressing Enter.
commit 869e35270ecffd9024958880cb03f6f0bb01ea93
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 16 15:35:47 2016 +0200
patch 8.0.0041
Problem: When using Insert mode completion but not actually inserting
anything an undo item is still created. (Tommy Allen)
Solution: Do not call stop_arrow() when not inserting anything.
commit 8507747600bddfd6a68aed057840856bf5548e61
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 16 14:35:48 2016 +0200
patch 8.0.0040
Problem: Whole line highlighting with matchaddpos() does not work.
Solution: Check for zero length. (Hirohito Higashi)
commit 156919f99afd1ac11d19d4270afbc1afb7245640
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 20:46:20 2016 +0200
patch 8.0.0039
Problem: When Vim 8 reads an old viminfo and exits, the next time marks are
not read from viminfo. (Ned Batchelder)
Solution: Set a mark when it wasn't set before, even when the timestamp is
zero. (closes #1170)
commit ca291aec99b60fe81eaab36aa718e51421bb88d5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 19:33:50 2016 +0200
patch 8.0.0038
Problem: OPEN_CHR_FILES not defined for FreeBSD using Debian userland
files.
Solution: Check for __FreeBSD_kernel__. (James McCoy, closes #1166)
commit 0a9046fbcb33770517ab0220b8100c4494bddab2
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 19:28:13 2016 +0200
patch 8.0.0037
Problem: Get E924 when switching tabs. ()
Solution: Use win_valid_any_tab() instead of win_valid(). (Martin Vuille,
closes #1167, closes #1171)
commit 97792de2762cc79cc365a8a0b858f27753179577
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 18:36:49 2016 +0200
patch 8.0.0036
Problem: Detecting that a job has finished may take a while.
Solution: Check for a finished job more often (Ozaki Kiichi)
commit 472e85970ee3a80abd824bef510df12e9cfe9e96
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 17:06:47 2016 +0200
patch 8.0.0035
Problem: Order of matches for 'omnifunc' is messed up. (Danny Su)
Solution: Do not set compl_curr_match when called from complete_check().
(closes #1168)
commit 9e507ca8a3e1535e62de4bd86374b0fcd18ef5b8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 15:39:39 2016 +0200
patch 8.0.0034
Problem: No completion for ":messages".
Solution: Complete "clear" argument. (Hirohito Higashi)
commit a6c27ee6db2c328e0ab0e6d143e2a295a0bb9c9a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 15 14:56:30 2016 +0200
patch 8.0.0033
Problem: Cannot use overlapping positions with matchaddpos().
Solution: Check end of match. (Ozaki Kiichi) Add a test (Hirohito Higashi)
commit 4575876dc865d4160f20d61bd822fbe7cafbec41
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 23:08:06 2016 +0200
Updated runtime files.
commit 3e8474dd50f64c998bb665ce852f584a58dede6b
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 17:52:42 2016 +0200
patch 8.0.0032
Problem: Tests may change the input file when something goes wrong.
Solution: Avoid writing the input file.
commit e8ef3a093453b73594e15462d4de50b011c8ba66
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 17:45:29 2016 +0200
patch 8.0.0031
Problem: After ":bwipeout" 'fileformat' is not set to the right default.
Solution: Get the default from 'fileformats'. (Mike Williams)
commit 0ba407012c63064f03f1a5677677d4da423e5a73
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 14:50:54 2016 +0200
patch 8.0.0030
Problem: Mouse mode is not automatically detected for tmux.
Solution: Check for 'term' to be "tmux". (Michael Henry)
commit cea912af725c54f4727a0565e31661f6b29c6bb1
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 14:20:24 2016 +0200
patch 8.0.0029
Problem: Code for MS-Windows is complicated because of the exceptions for
old systems.
Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
commit a7c023ec88233a2db4c1f53121921e110ece8d43
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Oct 12 12:13:35 2016 +0200
patch 8.0.0028
Problem: Superfluous semicolons.
Solution: Remove them. (Ozaki Kiichi)
commit dc08328821a2c11e33dfb1980332e4923ec64fca
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 11 08:57:33 2016 +0200
Updated runtime files.
commit dc0ccaee68ca24d10050117fbec757ad33590a17
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 9 17:28:01 2016 +0200
patch 8.0.0027
Problem: A channel is closed when reading on stderr or stdout fails, but
there may still be something to read on another part.
Solution: Turn ch_to_be_closed into a bitfield. (Ozaki Kiichi)
commit 9b4579481892a62e7e002498b9eddaaf75bbda49
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 9 16:10:05 2016 +0200
patch 8.0.0026
Problem: Error format with %W, %C and %Z does not work. (Gerd Wachsmuth)
Solution: Skip code when qf_multiignore is set. (Lcd)
commit 936c48f8ca82a0257640c8c9d0792538f5a7e813
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 9 15:50:48 2016 +0200
patch 8.0.0025
Problem: Inconsistent use of spaces vs tabs in gd test.
Solution: Use tabs. (Anton Lindqvist)
commit 8ddef48d1eade1911b946fdda8c73c80856e6273
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 9 15:43:25 2016 +0200
patch 8.0.0024
Problem: When the netbeans channel closes, "DETACH" is put in the output
part. (Ozaki Kiichi)
Solution: Write "DETACH" in the socket part.
commit 226630a030c0d41145e1109f09633360fc9c999d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 8 19:21:31 2016 +0200
patch 8.0.0023
Problem: "gd" and "gD" may find a match in a comment or string.
Solution: Ignore matches in comments and strings. (Anton Lindqvist)
commit ec68a99464055029c01082762517e97245ddae0c
Author: Bram Moolenaar <Bram@vim.org>
@ -3566,13 +3769,6 @@ Date: Tue Jul 5 22:28:40 2016 +0200
Problem: Cscope items are not sorted.
Solution: Put the new "a" command first. (Ken Takata)
commit 550c699eb780b27b3875f6cdffa2eae471390908
Merge: 26522e4 b33c7eb
Author: Karsten Hopp <karsten@redhat.com>
Date: Tue Jul 5 12:56:13 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit b33c7eb5b813cb631b2b0ca5c4029e1788a09bde
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jul 4 22:29:49 2016 +0200
@ -3582,13 +3778,6 @@ Date: Mon Jul 4 22:29:49 2016 +0200
Solution: Implement using a Funcref argument (Yasuhiro Matsumoto, Ken
Takata)
commit 26522e4eebc3a78a23eeb63fa5ee2d24a9a7f189
Merge: 1c582ef ab9c89b
Author: Karsten Hopp <karsten@redhat.com>
Date: Mon Jul 4 10:17:45 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 3 17:47:26 2016 +0200
@ -4635,13 +4824,6 @@ Date: Thu Jun 2 11:54:06 2016 +0200
Problem: Can't build with old version of Perl.
Solution: Define PERLIO_FUNCS_DECL. (Tom G. Christensen)
commit 1c582ef49f17436313b82977c0a941f461ba130a
Merge: 0a1b630 b89a25f
Author: Karsten Hopp <karsten@redhat.com>
Date: Thu Jun 2 10:51:31 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit b89a25f17e274dc308c584ea69a129ffbb26bc3d
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jun 1 23:08:39 2016 +0200
@ -4979,13 +5161,6 @@ Date: Sun May 15 18:00:19 2016 +0200
message.
Solution: Require getting a number. (Bjorn Linse)
commit 0a1b630aab827344cc14ea2c98bbd068f6498abb
Merge: 3247fc9 73a733e
Author: Karsten Hopp <karsten@redhat.com>
Date: Fri May 13 11:29:13 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit 73a733e08bb7853d2ac12c60756ae51e39abb4d9
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed May 11 21:05:05 2016 +0200
@ -5270,13 +5445,6 @@ Date: Fri Apr 29 22:33:27 2016 +0200
Problem: Still compiler warning for unused return value. (Charles Campbell)
Solution: Assign to ignoredp.
commit 3247fc9e85ec2067ebfd44d0e7efebce66f0aac2
Merge: f953813 c61348e
Author: Karsten Hopp <karsten@redhat.com>
Date: Fri Apr 29 11:43:48 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit c61348e83fd4eed8b999fe5b7cdfb4caf90bf3fd
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 28 22:20:03 2016 +0200
@ -5370,13 +5538,6 @@ Date: Tue Apr 26 17:16:24 2016 +0200
Solution: First invoke out/err callbacks before the close callback.
Make the close callback work on Windows.
commit f9538136beff21c04d8d7f8ad7f8d23ed0905771
Merge: b33f51a d10abe5
Author: Karsten Hopp <karsten@redhat.com>
Date: Tue Apr 26 13:09:13 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit d10abe52019d10403eb559ea0a424bbd310b738f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Apr 24 15:41:33 2016 +0200
@ -5470,13 +5631,6 @@ Date: Fri Apr 22 20:20:19 2016 +0200
Problem: Using wrong buffer length.
Solution: use the right name. (Kazunobu Kuriyama)
commit b33f51aac191c8831bebbc0ca5b0a49456fc0003
Merge: 8cf439c 763b684
Author: Karsten Hopp <karsten@redhat.com>
Date: Fri Apr 22 12:40:34 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit 763b684373bf5954445d8d8d99da1e39a4fc5105
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Apr 22 12:24:52 2016 +0200
@ -5988,13 +6142,6 @@ Date: Fri Apr 8 17:07:19 2016 +0200
by them. Go through all jobs and channels to find unreferenced
items. Also, decrement reference counts when garbage collecting.
commit 8cf439cb8003c79addd36cc2c6d1dcc42652f3f2
Merge: d8dc5e6 d56374e
Author: Karsten Hopp <karsten@redhat.com>
Date: Fri Apr 8 11:00:52 2016 +0200
Merge branch 'master' of https://github.com/vim/vim
commit d56374e25df0b317b01423a01f158157faa647fa
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 7 22:16:30 2016 +0200
@ -7256,13 +7403,6 @@ Date: Tue Mar 15 16:35:39 2016 +0100
Problem: No test for ":help".
Solution: Add a test for what 7.4.1568 fixed. (Higashi Higashi)
commit d8dc5e63fabbbddeb45a311f1deff240e4a8e709
Merge: 0ee7bfe 426dd02
Author: Karsten Hopp <karsten@redhat.com>
Date: Tue Mar 15 16:13:43 2016 +0100
Merge branch 'master' of https://github.com/vim/vim
commit 426dd0219512af5f4abeb0901b533159253ffba3
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 15 15:09:29 2016 +0100
@ -8568,14 +8708,6 @@ Date: Thu Feb 25 15:25:03 2016 +0100
(Jörg Plate)
Solution: Use "char_u" always.
commit 0ee7bfeec9fef5bd2a86ba0e37de6b4ffe11e152
Merge: 61d7db7 f391327
Author: Karsten Hopp <karsten@redhat.com>
Date: Thu Feb 25 00:31:00 2016 +0100
Merg e branch 'master' of https://github.com/vim/vim
pd
commit f391327adbbffb11180cf6038a92af1ed144e907
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 25 00:00:01 2016 +0100
@ -9184,13 +9316,6 @@ Date: Wed Feb 17 20:48:19 2016 +0100
Problem: A few more compiler warnings. (Axel Bender)
Solution: Add type casts.
commit 61d7db7b5a9897fea34054cebe8442f45efa3fa4
Merge: 07a61e8 2032190
Author: Karsten Hopp <karsten@redhat.com>
Date: Wed Feb 17 14:50:39 2016 +0100
Merge branch 'master' of https://github.com/vim/vim
commit 203219048fa007b5042d9b893fd647aef44722a0
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 17 12:30:17 2016 +0100
@ -10185,13 +10310,6 @@ Date: Mon Feb 1 21:32:58 2016 +0100
Solution: Add a zero timeout. Call parse_queued_messages(). (Yasuhiro
Matsumoto)
commit 07a61e8ce9dfd44a17d63b4629fb7443cc481a7f
Merge: 67a4e64 fb1f626
Author: Karsten Hopp <karsten@redhat.com>
Date: Mon Feb 1 14:12:20 2016 +0100
Merge branch 'master' of https://github.com/vim/vim
commit fb1f62691eae7c79a28b3b17a60e72ce198c71a2
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 31 20:24:32 2016 +0100
@ -10943,13 +11061,6 @@ Date: Tue Jan 19 23:36:15 2016 +0100
Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f"
flag to sort().
commit 67a4e64892d55b6ee45673230ca77693860ac6cb
Merge: 2b52732 b8060fe
Author: Karsten Hopp <karsten@redhat.com>
Date: Tue Jan 19 22:53:42 2016 +0100
Merge branch 'master' of https://github.com/vim/vim
commit b8060fe862f684b591f9ac679eac5b2594d6c5a0
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 19 22:29:28 2016 +0100
@ -11438,12 +11549,6 @@ Date: Tue Jan 12 21:00:40 2016 +0100
problem.
Solution: Move the conditions. Don't use endpos if handling an error.
commit 2b527328d1927b42ca190ff5f92ba69283bdcad0
Author: Karsten Hopp <karsten@redhat.com>
Date: Tue Jan 12 14:59:32 2016 +0100
add more ssh keywords
commit d79e55016cf8268cee935f1ac3b5b28712d1399e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 10 22:13:02 2016 +0100

View File

@ -1 +1 @@
d09d758d0e76356a3f881a87dd86f007 vim-8.0-018.tar.bz2
f15c4f332ab6677144ef6f051711b82a vim-8.0-037.tar.bz2

View File

@ -1,4 +1,4 @@
%define patchlevel 018
%define patchlevel 037
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
%define WITH_SELINUX 1
%endif
@ -746,6 +746,9 @@ rm -rf %{buildroot}
%{_datadir}/icons/locolor/*/apps/*
%changelog
* Wed Oct 19 2016 Karsten Hopp <karsten@redhat.com> 8.0.037-1
- patchlevel 037
* Wed Oct 19 2016 Karsten Hopp <karsten@redhat.com> 8.0.018-1
- switch to gtk3