SHA256
8
0
forked from pool/vim

- Updated to revision 1842, fixes the following problems

* non-antialiased misnamed.
  * When timer_stop() is called with a string there is no proper
    error message.
  * Memory leak in debug commands.
  * Cannot use an Ex command for 'keywordprg'.
  * Possible crash when conceal is active.
  * When splitting and closing a window the status height changes.
  * When using a partial on a dictionary it always gets bound to that
    dictionary.
  * The BufUnload event is triggered twice, when :bunload is used with
    `bufhidden` set to `unload` or `delete`.
  * Functions specifically for testing do not sort together.
  * Cannot get the items stored in a partial.
  * When using packages an "after" directory cannot be used.
  * The code to reallocate the buffer used for quickfix is repeated.
  * get() works for Partial but not for Funcref.

OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=362
This commit is contained in:
Ismail Dönmez
2016-05-25 10:58:17 +00:00
committed by Git OBS Bridge
parent 00c4e15750
commit d59e60da7e
4 changed files with 25 additions and 4 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Wed May 25 10:53:20 UTC 2016 - idonmez@suse.com
- Updated to revision 1842, fixes the following problems
* non-antialiased misnamed.
* When timer_stop() is called with a string there is no proper
error message.
* Memory leak in debug commands.
* Cannot use an Ex command for 'keywordprg'.
* Possible crash when conceal is active.
* When splitting and closing a window the status height changes.
* When using a partial on a dictionary it always gets bound to that
dictionary.
* The BufUnload event is triggered twice, when :bunload is used with
`bufhidden` set to `unload` or `delete`.
* Functions specifically for testing do not sort together.
* Cannot get the items stored in a partial.
* When using packages an "after" directory cannot be used.
* The code to reallocate the buffer used for quickfix is repeated.
* get() works for Partial but not for Funcref.
-------------------------------------------------------------------
Tue May 24 07:12:15 UTC 2016 - idonmez@suse.com