SHA256
1
0
forked from pool/vim

- updated vim-7.4-rpmlintrc

- drop no-common.patch 
- Updated to version 8.2.3459, fixes the following problems
  * Can delete a numbered function. (Naohiro Ono)
  * Reading beyond end of line with invalid utf-8 character.
  * Crash with linebreak, listchars and large tabstop.
  * Vim9: crash when using base name of import. (Naohiro Ono)
  * Vim9: importing the wrong file.
  * Vim9: too many characters are allowed in import name.
  * fullcommand() gives the wrong name if there is a buffer-local user
  command. (Naohiro Ono)
  * Vim9: Not all function argument types are properly checked.
  * Second error is reported while exception is being thrown.
  * Vim9: a failing debug expression aborts script sourcing.
  * Garbage collection while evaluating may cause trouble.
  * A failing debug expression may make Vim unusable.
  * _REENTRANT defined more than once.
  * A bit of code is not covered by tests.
  * Vim9: no failure if return type differs from returned variable.
  * Vim9: list += list creates a new list in :def function.
  * A sequence of spaces is hard to see in list mode.
  * Warning for using uninitialized variable.
  * Crash when deleting a listener in a listener callback. (Naohiro Ono)
  * Double free when list is copied.
  * Using freed memory when replacing. (Dhiraj Mishra)
  * Leaking memory when assigning to list or dict.
  * No generic way to trigger an autocommand on mode change.
  * Completion for :disas sorts local functions first.
  * Octave/Matlab filetype detection does not work properly.
  * :delcommand does not take a -buffer option.

OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=680
This commit is contained in:
2021-10-01 09:07:04 +00:00
committed by Git OBS Bridge
parent 33513a5c2a
commit a0c91cfac7
5 changed files with 63 additions and 10 deletions

View File

@@ -1,3 +1,62 @@
-------------------------------------------------------------------
Fri Oct 1 08:42:38 UTC 2021 - Ondřej Súkup <mimi.vx@gmail.com>
- updated vim-7.4-rpmlintrc
- drop no-common.patch
- Updated to version 8.2.3459, fixes the following problems
* Can delete a numbered function. (Naohiro Ono)
* Reading beyond end of line with invalid utf-8 character.
* Crash with linebreak, listchars and large tabstop.
* Vim9: crash when using base name of import. (Naohiro Ono)
* Vim9: importing the wrong file.
* Vim9: too many characters are allowed in import name.
* fullcommand() gives the wrong name if there is a buffer-local user
command. (Naohiro Ono)
* Vim9: Not all function argument types are properly checked.
* Second error is reported while exception is being thrown.
* Vim9: a failing debug expression aborts script sourcing.
* Garbage collection while evaluating may cause trouble.
* A failing debug expression may make Vim unusable.
* _REENTRANT defined more than once.
* A bit of code is not covered by tests.
* Vim9: no failure if return type differs from returned variable.
* Vim9: list += list creates a new list in :def function.
* A sequence of spaces is hard to see in list mode.
* Warning for using uninitialized variable.
* Crash when deleting a listener in a listener callback. (Naohiro Ono)
* Double free when list is copied.
* Using freed memory when replacing. (Dhiraj Mishra)
* Leaking memory when assigning to list or dict.
* No generic way to trigger an autocommand on mode change.
* Completion for :disas sorts local functions first.
* Octave/Matlab filetype detection does not work properly.
* :delcommand does not take a -buffer option.
* Function prototype for trigger_modechanged() is incomplete.
* Vim9: dict is not passed to dict function.
* Check for optional bool type has confusing return type.
* Compiler warnings for 32/64 bit usage.
* Cannot manipulate blobs.
* Deleted lines go to wrong yank register.
* Recover test fails if there is an old swap file.
* Vim9: || and && are not handled at compile time when possible.
* Vim9: memory leak when and/or fails.
* concealed text not revealed when leaving insert mode. (Michael Soyka)
* On Solaris longVersion may be declared twice. (Vladimir Marek)
* Not enough tests for empty string arguments.
* A couple of declarations are not ANSI C.
* :endtry after function call that throws not found.
* Sort fails if the sort compare function returns 999.
* Coveralls action fails.
* Not all apache files are recognized.
* MPD files are not recognized.
* Autocmd not executed when editing a directory ending in a path separator
inside try block.
* Using a count with "gp" leave cursor in wrong position. (Naohiro Ono)
* Using a count with "gp" leaves '] in wrong position. (Naohiro Ono)
* Vim9: Not all functions are tested with an empty string argument.
* Not all dictdconf files are recognized.
* Vim9: need more tests for empty string arguments.
-------------------------------------------------------------------
Fri Sep 17 10:34:34 UTC 2021 - Dr. Werner Fink <werner@suse.de>