r113 - in trunk/vim/debian: . patches

Norbert Tretkowski nobse@costa.debian.org
Sat, 26 Mar 2005 10:18:10 +0000


Author: nobse
Date: 2005-03-26 10:18:09 +0000 (Sat, 26 Mar 2005)
New Revision: 113

Added:
   trunk/vim/debian/patches/117_fortran.vim.diff
Modified:
   trunk/vim/debian/changelog
Log:
fix for #301452


Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2005-03-26 09:22:19 UTC (rev 112)
+++ trunk/vim/debian/changelog	2005-03-26 10:18:09 UTC (rev 113)
@@ -2,41 +2,43 @@
 
   * New upstream patch (068), see README.gz for details.
     + 6.3.068: When editing a compressed file xxx.gz which is a symbolic link
-      to the to the actual file a ":write" no longer renames the link (patch
-      by James Vega). (closes: #281630)
+      to the actual file a ":write" no longer renames the link (patch by James
+      Vega). (closes: #281630)
 
   * Norbert Tretkowski <nobse@debian.org>:
     + Added James Vega <jamessan@jamessan.com> to uploaders.
     + Fixed wrong executable registration in /usr/lib/mime/packages/kvim,
       thanks to Robin Verduijn for the patch. (closes: #295471)
+    + Fixed synchronisation of syntax highlighting in fortran 90 programs.
+      (closes: #301452)
     + Removed vim-doc's dependency on vim, so it's possible to install vim-doc
       without also installing vim.
 
   * 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)
-    + Fix texinfo syntax file warning.  (closes: #286763)
+    + 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)
+    + Fix texinfo syntax file warning. (closes: #286763)
 
   * Matthijs Mohlmann <matthijs@cacholong.nl>:
-    + Fix lintian warning packages-installs-file-to-usr-x11r6
-      - Moving xpm files to /usr/share/pixmaps
-      - Edited the menu files
-    + Removed prerm-does-not-call-installdocs from lintian/vim
-    + Added patch 111_fstab.vim.diff (Fixes highlighting in fstab)
+    + Fix lintian warning packages-installs-file-to-usr-x11r6.
+      - Moving xpm files to /usr/share/pixmaps.
+      - Edited the menu files.
+    + Removed prerm-does-not-call-installdocs from lintian/vim.
+    + Added patch 111_fstab.vim.diff (fixes highlighting in fstab).
       (closes: #300108)
-    + Removed Suggests: vim from vim-doc in debian/control
+    + Removed Suggests: vim from vim-doc in debian/control.
     + Fixed binary-without-manpage for several packages.
     + Fixed pkg-not-in-package-test in kvim-tcl, kvim-ruby, kvim-python and
       kvim-perl.
     + Fixed the errors postinst-does-not-call-updatemenus and
-       postrm-does-not-call-updatemenus
+      postrm-does-not-call-updatemenus.
 
   * James Vega <jamessan@jamessan.com>:
-    + Closes: #269325: [syntax/sh.vim] highlighting of comments containing
-      right parenthesis wrong when comments occur between switches of case
+    + Fixed wrong highlighting of comments in syntax/sh.vim when comments
+      occur between switches of case. (closes: #269325)
 
- -- Norbert Tretkowski <nobse@debian.org>  Thu, 24 Mar 2005 22:24:10 +0100
+ -- Norbert Tretkowski <nobse@debian.org>  Sat, 26 Mar 2005 11:14:08 +0100
 
 vim (1:6.3-067+2) unstable; urgency=medium
 

Added: trunk/vim/debian/patches/117_fortran.vim.diff
===================================================================
--- trunk/vim/debian/patches/117_fortran.vim.diff	2005-03-26 09:22:19 UTC (rev 112)
+++ trunk/vim/debian/patches/117_fortran.vim.diff	2005-03-26 10:18:09 UTC (rev 113)
@@ -0,0 +1,11 @@
+diff -Nur vim63.orig/runtime/syntax/fortran.vim vim63/runtime/syntax/fortran.vim
+--- vim63.orig/runtime/syntax/fortran.vim	2003-03-12 11:07:32.000000000 +0100
++++ vim63/runtime/syntax/fortran.vim	2005-03-26 11:13:05.436032608 +0100
+@@ -93,6 +93,7 @@
+ endif
+ 
+ syn case ignore
++syn sync fromstart
+ 
+ if b:fortran_dialect == "f77"
+   syn match fortranIdentifier		"\<\a\(\a\|\d\)*\>" contains=fortranSerialNumber