r471 - trunk/vim/patches

Pierre Habouzit madcoder at costa.debian.org
Wed Jan 18 10:45:44 UTC 2006


Author: madcoder
Date: 2006-01-18 10:45:43 +0000 (Wed, 18 Jan 2006)
New Revision: 471

Modified:
   trunk/vim/patches/154_svn.vim.diff
Log:
fix incorrect patch

Modified: trunk/vim/patches/154_svn.vim.diff
===================================================================
--- trunk/vim/patches/154_svn.vim.diff	2006-01-16 09:59:01 UTC (rev 470)
+++ trunk/vim/patches/154_svn.vim.diff	2006-01-18 10:45:43 UTC (rev 471)
@@ -7,7 +7,7 @@
  endif
  
 -syn region svnRegion	start="--This line, and those below, will be ignored--" end="\%$" contains=ALL
-+syn region svnRegion	start="^--[^-]*--$" end="\%$" contains=ALL
++syn region svnRegion	start="^--.*--$" end="\%$" contains=ALL
  syn match svnRemoved	"^D    .*$" contained
  syn match svnAdded	"^A[ M]   .*$" contained
  syn match svnModified	"^M[ M]   .*$" contained
@@ -16,7 +16,7 @@
  " Synchronization.
  syn sync clear
 -syn sync match svnSync	grouphere svnRegion "--This line, and those below, will be ignored--"me=s-1
-+syn sync match svnSync	grouphere svnRegion "^--[^-]*--$"me=s-1
++syn sync match svnSync	grouphere svnRegion "^--.*--$"me=s-1
  
  " Define the default highlighting.
  " For version 5.7 and earlier: only when not done already.




More information about the pkg-vim-maintainers mailing list