rev 9714 - in trunk/packages/kdelibs/debian: . patches

Fathi Boudra fabo at alioth.debian.org
Tue Mar 11 18:19:35 UTC 2008


Author: fabo
Date: 2008-03-11 18:19:35 +0000 (Tue, 11 Mar 2008)
New Revision: 9714

Added:
   trunk/packages/kdelibs/debian/patches/02_kate_regression_r777286.diff
Modified:
   trunk/packages/kdelibs/debian/changelog
Log:
* Add 02_kate_regression_r777286 patch to fix wrong cusor position when
  copy/paste multi-line test block.


Modified: trunk/packages/kdelibs/debian/changelog
===================================================================
--- trunk/packages/kdelibs/debian/changelog	2008-03-11 16:26:34 UTC (rev 9713)
+++ trunk/packages/kdelibs/debian/changelog	2008-03-11 18:19:35 UTC (rev 9714)
@@ -8,6 +8,11 @@
     automake-cleaned kdelibs4c2a.
   * Bump shlibs to 3.5.9
 
+  +++ Changes by Fathi Boudra:
+
+  * Add 02_kate_regression_r777286 patch to fix wrong cusor position when
+    copy/paste multi-line test block.
+
  -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Sun, 09 Mar 2008 12:41:03 +0200
 
 kdelibs (4:3.5.9.dfsg.1-1) unstable; urgency=low

Added: trunk/packages/kdelibs/debian/patches/02_kate_regression_r777286.diff
===================================================================
--- trunk/packages/kdelibs/debian/patches/02_kate_regression_r777286.diff	                        (rev 0)
+++ trunk/packages/kdelibs/debian/patches/02_kate_regression_r777286.diff	2008-03-11 18:19:35 UTC (rev 9714)
@@ -0,0 +1,14 @@
+Revert r772352 as it causes an error when pasting multi-line text blocks,
+leaving the caret at the end of the first line of the pasted block.
+
+--- a/kate/part/katesupercursor.cpp
++++ b/kate/part/katesupercursor.cpp
+@@ -186,7 +186,7 @@
+ {
+   if (newLine)
+   {
+-    if (m_line > int(line) || (m_line == int(line) && m_col > int(col)))
++    if (m_line > int(line) || (m_line == int(line) && m_col >= int(col)))
+     {
+       if(m_line == int(line))
+          m_col -= col;




More information about the pkg-kde-commits mailing list