- Updated to revision 172, fixes the following problems

* When a C preprocessor statement has two line continuations the
    following line does not have the right indent. (Ken Takata)
  * ":earlier" and ":later" do not work after startup or reading
    the undo file.
  * When the pattern of :filter does not have a separator then
    completion of the command fails.
  * To pass buffer content to system() and systemlist() one has to
    first create a string or list.
  * Running the channel test creates channellog.
  * system() test fails on MS-Windows.
  * system() test fails on OS/X.
  * When sorting zero elements a NULL pointer is passed to qsort(),
    which ubsan warns for.
  * Several float functions are not covered by tests.
  * No command line completion for ":syntax spell" and ":syntax
    sync".
  * On MS-Windows some float functions return a different value when
    passed unusual values.  strtod() doesn't work for "inf" and "nan".
  * Using a NULL pointer when using feedkeys() to trigger drawing
    a tabline.
  * EMSG() is sometimes used for internal errors.
  * Build fails when using small features.
  * Build error on Fedora 23 with small features and gnome2.
  * Ruby 2.4 no longer supports rb_cFixnum.
  * Outdated and misplaced comments.
  * Ubsan warns for integer overflow.
  * JSON with a duplicate key gives an internal error. (Lcd)
  * str2nr() and str2float() do not always work with negative values.
  * Still some float functionality is not covered by tests.

OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=406
This commit is contained in:
Ismail Dönmez 2017-01-12 12:04:26 +00:00 committed by Git OBS Bridge
parent 7ecad313af
commit 83fa4cd32c
4 changed files with 44 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f83a1d133a34d0fee8cdf44e75fc2321463b275f952bd884586bc827ec395866
size 12950122

3
vim-8.0.0172.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ebb04babda7021bd49cb524a1b462c4a472740842a90e41f274f6409b0543931
size 12955830

View File

@ -1,3 +1,42 @@
-------------------------------------------------------------------
Thu Jan 12 11:55:45 UTC 2017 - idonmez@suse.com
- Updated to revision 172, fixes the following problems
* When a C preprocessor statement has two line continuations the
following line does not have the right indent. (Ken Takata)
* ":earlier" and ":later" do not work after startup or reading
the undo file.
* When the pattern of :filter does not have a separator then
completion of the command fails.
* To pass buffer content to system() and systemlist() one has to
first create a string or list.
* Running the channel test creates channellog.
* system() test fails on MS-Windows.
* system() test fails on OS/X.
* When sorting zero elements a NULL pointer is passed to qsort(),
which ubsan warns for.
* Several float functions are not covered by tests.
* No command line completion for ":syntax spell" and ":syntax
sync".
* On MS-Windows some float functions return a different value when
passed unusual values. strtod() doesn't work for "inf" and "nan".
* Using a NULL pointer when using feedkeys() to trigger drawing
a tabline.
* EMSG() is sometimes used for internal errors.
* Build fails when using small features.
* Build error on Fedora 23 with small features and gnome2.
* Ruby 2.4 no longer supports rb_cFixnum.
* Outdated and misplaced comments.
* Ubsan warns for integer overflow.
* JSON with a duplicate key gives an internal error. (Lcd)
* str2nr() and str2float() do not always work with negative values.
* Still some float functionality is not covered by tests.
* For complicated string json_decode() may run out of stack space.
* Channel test fails for using freed memory.
* JS style JSON does not support single quotes.
* The command selected in the command line window is not
executed. (Andrey Starodubtsev)
-------------------------------------------------------------------
Sun Jan 8 08:24:18 UTC 2017 - idonmez@suse.com

View File

@ -17,8 +17,8 @@
%define pkg_version 8.0
%define patchlevel 0147
%define patchlevel_compact 147
%define patchlevel 0172
%define patchlevel_compact 172
%define VIM_SUBDIR vim80
%define site_runtimepath /usr/share/vim/site
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}