From b877fcfc21fb3147e36d95f79d2be8d056d3027337d9023311216e34dfa4c720 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Mon, 26 May 2014 08:47:58 +0000 Subject: [PATCH] =?UTF-8?q?-=20Updated=20to=20revision=20307,=20fixes=20th?= =?UTF-8?q?e=20following=20problems=20=20=20*=20Setting=20'langmap'=20in?= =?UTF-8?q?=20the=20modeline=20can=20cause=20trouble.=20=20E.g.=20mapping?= =?UTF-8?q?=20=20=20=20=20":"=20breaks=20many=20commands.=20(Jens-Wolfhard?= =?UTF-8?q?=20Schicke-Uffmann)=20=20=20*=20When=20'relativenumber'=20is=20?= =?UTF-8?q?set=20and=20deleting=20lines=20or=20undoing=20that,=20=20=20=20?= =?UTF-8?q?=20line=20numbers=20are=20not=20always=20updated.=20(Robert=20A?= =?UTF-8?q?rkwright)=20=20=20*=20Error=20messages=20are=20inconsistant.=20?= =?UTF-8?q?(ZyX)=20=20=20*=20When=20'spellfile'=20is=20set=20the=20screen?= =?UTF-8?q?=20is=20not=20redrawn.=20=20=20*=20Pattern=20with=20repeated=20?= =?UTF-8?q?backreference=20does=20not=20match=20with=20new=20regexp=20=20?= =?UTF-8?q?=20=20=20engine.=20(Urtica=20Dioica)=20=20=20*=20A=20non-greedy?= =?UTF-8?q?=20match=20followed=20by=20a=20branch=20is=20too=20greedy.=20(I?= =?UTF-8?q?ngo=20=20=20=20=20Karkat)=20=20=20*=20Searching=20for=20"a"=20d?= =?UTF-8?q?oes=20not=20match=20accented=20"a"=20with=20new=20regexp=20=20?= =?UTF-8?q?=20=20=20engine,=20does=20match=20with=20old=20engine.=20(David?= =?UTF-8?q?=20B=C3=BCrgin)=20=20=20=20=20"ca"=20does=20not=20match=20"ca"?= =?UTF-8?q?=20with=20accented=20"a"=20with=20either=20engine.=20=20=20*=20?= =?UTF-8?q?It=20is=20not=20possible=20to=20ignore=20composing=20characters?= =?UTF-8?q?=20at=20a=20specific=20=20=20=20=20point=20in=20a=20pattern.=20?= =?UTF-8?q?=20=20*=20Memory=20leak=20from=20result=20of=20get=5Fisolated?= =?UTF-8?q?=5Fshell=5Fname().=20=20=20*=20Can't=20have=20a=20funcref=20sta?= =?UTF-8?q?rt=20with=20"t:".=20=20=20*=20When=20running=20configure=20twic?= =?UTF-8?q?e=20DYNAMIC=5FPYTHON=5FDLL=20may=20become=20empty.=20=20=20*=20?= =?UTF-8?q?Still=20a=20scrolling=20problem=20when=20loading=20a=20session?= =?UTF-8?q?=20file.=20=20=20*=20Signs=20placed=20with=20'foldcolumn'=20set?= =?UTF-8?q?=20don't=20show=20up=20after=20filler=20=20=20=20=20lines.=20?= =?UTF-8?q?=20=20*=20When=20using=20double-width=20characters=20the=20text?= =?UTF-8?q?=20displayed=20on=20the=20=20=20=20=20command=20line=20is=20som?= =?UTF-8?q?etimes=20truncated.=20=20=20*=20Cannot=20always=20use=20Python?= =?UTF-8?q?=20with=20Vim.=20=20=20*=20Making=20'ttymouse'=20empty=20after?= =?UTF-8?q?=20the=20xterm=20version=20was=20requested=20=20=20=20=20causes?= =?UTF-8?q?=20problems.=20(Elijah=20Griffin)=20=20=20*=20getchar(0)=20does?= =?UTF-8?q?=20not=20return=20Esc.=20=20=20*=20Can't=20build=20without=20th?= =?UTF-8?q?e=20+termresponse=20feature.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=217 --- vim-7.4-patches.tar.bz2 | 4 ++-- vim.changes | 33 +++++++++++++++++++++++++++++++++ vim.spec | 2 +- 3 files changed, 36 insertions(+), 3 deletions(-) diff --git a/vim-7.4-patches.tar.bz2 b/vim-7.4-patches.tar.bz2 index 7044ebe..d188f9b 100644 --- a/vim-7.4-patches.tar.bz2 +++ b/vim-7.4-patches.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e758ef77f2504eb2e9ba42cf1e97704f4a91012b873d5d521ecfb4c127f1ea5 -size 307779 +oid sha256:40c18f8a5f77776332cf4339cf107603ec8d55d4d6fdb6e409d9f77e0ed9e3c7 +size 329098 diff --git a/vim.changes b/vim.changes index 38a48aa..9a27597 100644 --- a/vim.changes +++ b/vim.changes @@ -1,3 +1,36 @@ +------------------------------------------------------------------- +Mon May 26 08:40:24 UTC 2014 - idonmez@suse.com + +- Updated to revision 307, fixes the following problems + * Setting 'langmap' in the modeline can cause trouble. E.g. mapping + ":" breaks many commands. (Jens-Wolfhard Schicke-Uffmann) + * When 'relativenumber' is set and deleting lines or undoing that, + line numbers are not always updated. (Robert Arkwright) + * Error messages are inconsistant. (ZyX) + * When 'spellfile' is set the screen is not redrawn. + * Pattern with repeated backreference does not match with new regexp + engine. (Urtica Dioica) + * A non-greedy match followed by a branch is too greedy. (Ingo + Karkat) + * Searching for "a" does not match accented "a" with new regexp + engine, does match with old engine. (David Bürgin) + "ca" does not match "ca" with accented "a" with either engine. + * It is not possible to ignore composing characters at a specific + point in a pattern. + * Memory leak from result of get_isolated_shell_name(). + * Can't have a funcref start with "t:". + * When running configure twice DYNAMIC_PYTHON_DLL may become empty. + * Still a scrolling problem when loading a session file. + * Signs placed with 'foldcolumn' set don't show up after filler + lines. + * When using double-width characters the text displayed on the + command line is sometimes truncated. + * Cannot always use Python with Vim. + * Making 'ttymouse' empty after the xterm version was requested + causes problems. (Elijah Griffin) + * getchar(0) does not return Esc. + * Can't build without the +termresponse feature. + ------------------------------------------------------------------- Tue May 13 19:40:29 UTC 2014 - sleep_walker@suse.cz diff --git a/vim.spec b/vim.spec index db9fc60..cc32b59 100644 --- a/vim.spec +++ b/vim.spec @@ -17,7 +17,7 @@ %define pkg_version 7.4 -%define official_ptchlvl 283 +%define official_ptchlvl 307 %define VIM_SUBDIR vim74 %define site_runtimepath /usr/share/vim/site %define make make VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/current MAKE="make -e" %{?_smp_mflags}