r566 - in trunk/vim: debian patches

James Vega jamessan at costa.debian.org
Sat Apr 1 14:25:09 UTC 2006


Author: jamessan
Date: 2006-04-01 14:25:08 +0000 (Sat, 01 Apr 2006)
New Revision: 566

Added:
   trunk/vim/patches/162_css.vim.diff
Modified:
   trunk/vim/debian/changelog
   trunk/vim/patches/series
Log:
Add patch for css syntax highlighting. (#358734)


Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2006-04-01 06:01:00 UTC (rev 565)
+++ trunk/vim/debian/changelog	2006-04-01 14:25:08 UTC (rev 566)
@@ -6,6 +6,7 @@
   [ Pierre Habouzit ]
   * Support python `as' keyword. (closes: #352885)
   * Add support for cmake (from cmake.org). (closes: #357705)
+  * debcontrol.vim: add kfreebsd-amd64 to the ports list.
 
   [ James Vega ]
   * Add a missing quote in /etc/vim/vimrc's last-position-jump example.
@@ -15,14 +16,15 @@
     (closes: #353076)
   * Move vimtutor.1 to the same package (vim-runtime) as vimtutor.
     Fixes a lintian warning.
+  * Added patch 162_css.vim.diff which catches an error when utf-8 characters
+    aren't supported.  (closes: #358734)
+  * Remove the empty usr/bin directory from the vim-gui-common package.
+    (closes: #354170)
 
   [ Norbert Tretkowski ]
   * Added patch 160_scripts.vim.diff which adds support for bzr diffs in
     scripts.vim, thanks to Adeodato Simó. (closes: #355922)
 
-  [ Pierre Habouzit ]
-  * debcontrol.vim: add kfreebsd-amd64 to the ports list.
-
   [ Matthijs Mohlmann ]
   * Updated debsources.vim
     + Use debsources instead of sources.
@@ -30,7 +32,7 @@
     + Remove setlocal iskeyword.
     + Remove compatibility with vim 5.x.
 
- -- Pierre Habouzit <madcoder at debian.org>  Tue, 28 Mar 2006 19:08:53 +0200
+ -- James Vega <jamessan at debian.org>  Sat,  1 Apr 2006 09:09:48 -0500
 
 vim (1:6.4-007+1) unstable; urgency=low
 

Added: trunk/vim/patches/162_css.vim.diff
===================================================================
--- trunk/vim/patches/162_css.vim.diff	2006-04-01 06:01:00 UTC (rev 565)
+++ trunk/vim/patches/162_css.vim.diff	2006-04-01 14:25:08 UTC (rev 566)
@@ -0,0 +1,33 @@
+Index: vim/runtime/syntax/css.vim
+===================================================================
+--- vim/runtime/syntax/css.vim.orig
++++ vim/runtime/syntax/css.vim
+@@ -2,7 +2,7 @@
+ " Language:	Cascading Style Sheets
+ " Maintainer:	Claudio Fleiner <claudio at fleiner.com>
+ " URL:		http://www.fleiner.com/vim/syntax/css.vim
+-" Last Change:	2004 Mar 30
++" Last Change:	2005 Nov 23
+ " CSS2 by Nikolai Weibull
+ " Full CSS2, HTML4 support by Yeti
+ 
+@@ -38,7 +38,12 @@
+ syn match cssSelectorOp2 "[~|]\?=" contained
+ syn region cssAttributeSelector matchgroup=cssSelectorOp start="\[" end="]" transparent contains=cssUnicodeEscape,cssSelectorOp2,cssStringQ,cssStringQQ
+ 
++try
+ syn match cssIdentifier "#[A-Za-zÀ-ÿ_@][A-Za-zÀ-ÿ0-9_ at -]*"
++catch /^.*/
++syn match cssIdentifier "#[A-Za-z_@][A-Za-z0-9_ at -]*"
++endtry
++
+ 
+ syn match cssMedia "@media\>" nextgroup=cssMediaType skipwhite skipnl
+ syn keyword cssMediaType contained screen print aural braile embosed handheld projection ty tv all nextgroup=cssMediaComma,cssMediaBlock skipwhite skipnl
+@@ -270,5 +275,6 @@
+   unlet main_syntax
+ endif
+ 
++
+ " vim: ts=8
+ 

Modified: trunk/vim/patches/series
===================================================================
--- trunk/vim/patches/series	2006-04-01 06:01:00 UTC (rev 565)
+++ trunk/vim/patches/series	2006-04-01 14:25:08 UTC (rev 566)
@@ -49,6 +49,7 @@
 159_netrw.vim.diff -p0
 160_scripts.vim.diff -p0
 161_cmake-support.diff -p0
+162_css.vim.diff -p0
 201_fr.po.diff -p0
 203_zh_TW.UTF8.po.diff -p0
 301_xxd.c.diff -p0




More information about the pkg-vim-maintainers mailing list