- Updated to revision 283, fixes the following problems
* Smack support detection is incomplete. * Configure check for smack doesn't work with all shells. (David Larson) * Using systemlist() may cause a crash and does not handle NUL characters properly. * Compiler warning, possibly for mismatch in parameter name. * Configure fails if $CC contains options. * Warning for misplaced "const". * It is possible to define a function with a colon in the name. It is possible to define a function with a lower case character if a "#" appears after the name. * When updating the window involves a regexp pattern, an interactive substitute to replace a "\n" with a line break fails. (Ingo Karkat) * Duplicate code in regexec(). * GCC 4.8 compiler warning for hiding a declaration (Francois Gannaz) * Can't define a function starting with "g:". Can't assign a funcref to a buffer-local variable. * Can't call a global function with "g:" in an expression. * Test 62 fails. * The '[ mark is in the wrong position after "gq". (Ingo Karkat) * Using exists() on a funcref for a script-local function does not work. * CTRL-U in Insert mode does not work after using a cursor key. (Pine Wu) * Comparing pointers instead of the string they point to. * Using just "$" does not cause an error message. * "make autoconf" and "make reconfig" may first run configure and then remove the output. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=213
This commit is contained in:
parent
74132c5882
commit
d191ad5eb4
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:d963bdb18f766b6322214358e10bed79348ada6c38ba82f4c102cfab0ef9099c
|
oid sha256:3e758ef77f2504eb2e9ba42cf1e97704f4a91012b873d5d521ecfb4c127f1ea5
|
||||||
size 283771
|
size 307779
|
||||||
|
49
vim.changes
49
vim.changes
@ -1,3 +1,52 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 12 13:04:17 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Updated to revision 283, fixes the following problems
|
||||||
|
* Smack support detection is incomplete.
|
||||||
|
* Configure check for smack doesn't work with all shells. (David
|
||||||
|
Larson)
|
||||||
|
* Using systemlist() may cause a crash and does not handle NUL
|
||||||
|
characters properly.
|
||||||
|
* Compiler warning, possibly for mismatch in parameter name.
|
||||||
|
* Configure fails if $CC contains options.
|
||||||
|
* Warning for misplaced "const".
|
||||||
|
* It is possible to define a function with a colon in the name. It
|
||||||
|
is possible to define a function with a lower case character if a
|
||||||
|
"#" appears after the name.
|
||||||
|
* When updating the window involves a regexp pattern, an interactive
|
||||||
|
substitute to replace a "\n" with a line break fails. (Ingo
|
||||||
|
Karkat)
|
||||||
|
* Duplicate code in regexec().
|
||||||
|
* GCC 4.8 compiler warning for hiding a declaration (Francois Gannaz)
|
||||||
|
* Can't define a function starting with "g:". Can't assign a
|
||||||
|
funcref to a buffer-local variable.
|
||||||
|
* Can't call a global function with "g:" in an expression.
|
||||||
|
* Test 62 fails.
|
||||||
|
* The '[ mark is in the wrong position after "gq". (Ingo Karkat)
|
||||||
|
* Using exists() on a funcref for a script-local function does not
|
||||||
|
work.
|
||||||
|
* CTRL-U in Insert mode does not work after using a cursor key.
|
||||||
|
(Pine Wu)
|
||||||
|
* Comparing pointers instead of the string they point to.
|
||||||
|
* Using just "$" does not cause an error message.
|
||||||
|
* "make autoconf" and "make reconfig" may first run configure and
|
||||||
|
then remove the output.
|
||||||
|
* When doing ":update" just before running an external command that
|
||||||
|
changes the file, the timestamp may be unchanged and the file
|
||||||
|
is not reloaded.
|
||||||
|
* When changing the type of a sign that hasn't been placed ther is
|
||||||
|
no error message.
|
||||||
|
* The fish shell is not supported.
|
||||||
|
* Using ":sign unplace *" may leave the cursor in the wrong position
|
||||||
|
(Christian Brabandt)
|
||||||
|
* globpath() returns a string, making it difficult to get a list of
|
||||||
|
matches. (Greg Novack)
|
||||||
|
* When using a session file the relative position of the cursor is
|
||||||
|
not restored if there is another tab. (Nobuhiro Takasaki)
|
||||||
|
* When a session file has more than one tabpage and 'showtabline' is
|
||||||
|
one the positions may be slightly off.
|
||||||
|
* Compiler warning about unused variable. (Charles Cooper)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 7 13:43:01 UTC 2014 - idonmez@suse.com
|
Mon Apr 7 13:43:01 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
|
5
vim.spec
5
vim.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
%define pkg_version 7.4
|
%define pkg_version 7.4
|
||||||
%define official_ptchlvl 253
|
%define official_ptchlvl 283
|
||||||
%define VIM_SUBDIR vim74
|
%define VIM_SUBDIR vim74
|
||||||
%define site_runtimepath /usr/share/vim/site
|
%define site_runtimepath /usr/share/vim/site
|
||||||
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}
|
%define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}
|
||||||
@ -227,8 +227,7 @@ export COMMON_OPTIONS="\
|
|||||||
export GUI_OPTIONS="\
|
export GUI_OPTIONS="\
|
||||||
--enable-xim \
|
--enable-xim \
|
||||||
--enable-fontset \
|
--enable-fontset \
|
||||||
--enable-gui=gtk2 \
|
--enable-gui=gtk2"
|
||||||
--enable-gtk2-check"
|
|
||||||
|
|
||||||
pushd src
|
pushd src
|
||||||
autoconf
|
autoconf
|
||||||
|
Loading…
Reference in New Issue
Block a user