r1227 - in /trunk/packages/vim: debian/changelog patches/option.c-p_para.diff patches/series

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Sun Mar 2 17:19:52 UTC 2008


Author: jamessan
Date: Sun Mar  2 17:19:51 2008
New Revision: 1227

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1227
Log:
* Added patches:
  - option.c-p_para.diff:
    + Recognize a few extra groff macros (TP, HP, Pp, Lp, and It) in the
      default 'paragraphs' option.  (Closes: #468924)

Added:
    trunk/packages/vim/patches/option.c-p_para.diff
Modified:
    trunk/packages/vim/debian/changelog
    trunk/packages/vim/patches/series

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=1227&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sun Mar  2 17:19:51 2008
@@ -1,6 +1,9 @@
 vim (1:7.1-266+2) UNRELEASED; urgency=low
 
-  * NOT RELEASED YET
+  * Added patches:
+    - option.c-p_para.diff:
+      + Recognize a few extra groff macros (TP, HP, Pp, Lp, and It) in the
+        default 'paragraphs' option.  (Closes: #468924)
 
  -- James Vega <jamessan at debian.org>  Wed, 27 Feb 2008 12:34:27 -0500
 

Added: trunk/packages/vim/patches/option.c-p_para.diff
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/option.c-p_para.diff?rev=1227&op=file
==============================================================================
--- trunk/packages/vim/patches/option.c-p_para.diff (added)
+++ trunk/packages/vim/patches/option.c-p_para.diff Sun Mar  2 17:19:51 2008
@@ -1,0 +1,27 @@
+Index: vim/runtime/doc/options.txt
+===================================================================
+--- vim/runtime/doc/options.txt.orig
++++ vim/runtime/doc/options.txt
+@@ -4878,7 +4878,7 @@
+ 	|autocmd-osfiletypes|
+ 
+ 						*'paragraphs'* *'para'*
+-'paragraphs' 'para'	string	(default "IPLPPPQPP LIpplpipbp")
++'paragraphs' 'para'	string	(default "IPLPPPQPP TPHPLIPpLpItpplpipbp")
+ 			global
+ 	Specifies the nroff macros that separate paragraphs.  These are pairs
+ 	of two letters (see |object-motions|).
+Index: vim/src/option.c
+===================================================================
+--- vim/src/option.c.orig
++++ vim/src/option.c
+@@ -1839,7 +1839,8 @@
+ 			    },
+     {"paragraphs",  "para", P_STRING|P_VI_DEF,
+ 			    (char_u *)&p_para, PV_NONE,
+-			    {(char_u *)"IPLPPPQPP LIpplpipbp", (char_u *)0L}},
++			    {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp",
++				(char_u *)0L}},
+     {"paste",	    NULL,   P_BOOL|P_VI_DEF|P_PRI_MKRC,
+ 			    (char_u *)&p_paste, PV_NONE,
+ 			    {(char_u *)FALSE, (char_u *)0L}},

Modified: trunk/packages/vim/patches/series
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/series?rev=1227&op=diff
==============================================================================
--- trunk/packages/vim/patches/series (original)
+++ trunk/packages/vim/patches/series Sun Mar  2 17:19:51 2008
@@ -35,3 +35,4 @@
 make.vim-syntax.diff -p0
 vim-git.diff -p2
 last-position-jump.diff -p0
+option.c-p_para.diff -p0




More information about the pkg-vim-maintainers mailing list