r99 - in trunk/vim/debian: . patches

Pierre Habouzit madcoder-guest@costa.debian.org
Tue, 22 Mar 2005 13:35:43 +0100


Author: madcoder-guest
Date: 2005-03-22 13:35:42 +0100 (Tue, 22 Mar 2005)
New Revision: 99

Added:
   trunk/vim/debian/patches/113_xml.vim.diff
Modified:
   trunk/vim/debian/changelog
Log:
backslash is not an xml escaping character, use " instead.

Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2005-03-22 07:50:21 UTC (rev 98)
+++ trunk/vim/debian/changelog	2005-03-22 12:35:42 UTC (rev 99)
@@ -3,6 +3,7 @@
   * Pierre Habouzit <pierre.habouzit@m4x.org>:
     + Fix php indent plugin thanks to the ITLab at MUSC.  (closes: #282135)
     + Fix prolog syntax file.  (closes: #269692)
+    + Fix xml syntax ('\' has no special meaning for xml).  (closes: #196001)
 
   * Matthijs Mohlmann <matthijs@cacholong.nl>:
     + Fix lintian warning packages-installs-file-to-usr-x11r6
@@ -13,7 +14,7 @@
       (closes: #300108)
     + Removed Suggests: vim from vim-doc in debian/control
 
- -- Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>  Tue, 22 Mar 2005 08:48:55 +0100
+ -- Debian VIM Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>  Tue, 22 Mar 2005 13:34:19 +0100
 
 vim (1:6.3-067+2) unstable; urgency=medium
 

Added: trunk/vim/debian/patches/113_xml.vim.diff
===================================================================
--- trunk/vim/debian/patches/113_xml.vim.diff	2005-03-22 07:50:21 UTC (rev 98)
+++ trunk/vim/debian/patches/113_xml.vim.diff	2005-03-22 12:35:42 UTC (rev 99)
@@ -0,0 +1,14 @@
+diff -Nrua vim63.orig/runtime/syntax/xml.vim vim63/runtime/syntax/xml.vim
+--- vim63.orig/runtime/syntax/xml.vim	2005-03-15 10:18:48.000000000 +0100
++++ vim63/runtime/syntax/xml.vim	2005-03-22 13:31:25.660806126 +0100
+@@ -58,8 +58,8 @@
+ "
+ " <tag foo.attribute = "value">
+ "                      ^^^^^^^
+-syn region  xmlString contained start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=xmlEntity display
+-syn region  xmlString contained start=+'+ skip=+\\\\\|\\'+ end=+'+ contains=xmlEntity display
++syn region  xmlString contained start=+"+ contains=xmlEntity display
++syn region  xmlString contained start=+'+ contains=xmlEntity display
+ 
+ 
+ " punctuation (within attributes) e.g. <tag xml:foo.attribute ...>