[Pkg-jed-commit] r772 - in jed/branches/0.99.19/debian: . patches

Jörg Sommer jo-guest at alioth.debian.org
Fri Jun 8 11:16:32 UTC 2007


Author: jo-guest
Date: 2007-06-08 11:16:32 +0000 (Fri, 08 Jun 2007)
New Revision: 772

Added:
   jed/branches/0.99.19/debian/patches/empty_rectangle.dpatch
Modified:
   jed/branches/0.99.19/debian/changelog
   jed/branches/0.99.19/debian/patches/00list
Log:
• debian/patches/empty_rectangle.dpatch
  · Improves the string_rectanle to not fail on a empty rectangle, butinstert
    only the text.


Modified: jed/branches/0.99.19/debian/changelog
===================================================================
--- jed/branches/0.99.19/debian/changelog	2007-06-08 09:46:25 UTC (rev 771)
+++ jed/branches/0.99.19/debian/changelog	2007-06-08 11:16:32 UTC (rev 772)
@@ -3,11 +3,15 @@
   * New upstream release, taken from the upstream SVN repository at
     gna.org
 
-  * Added slsh to the Depends field for slsh, because since 0.99.19-82
-    jed uses the require from slsh.
+  * debian/control: Added slsh to the Depends field for slsh, because
+    since 0.99.19-82 jed uses the require from slsh.
 
- -- Jörg Sommer <joerg at alea.gnuu.de>  Thu, 7 Jun 2007 16:59:04 +0200
+  * debian/patches/empty_rectangle.dpatch: Added a new patch that makes
+    string_rectangle (^X R T) does not fail with an empty rectangle and
+    insert only the text.
 
+ -- Jörg Sommer <joerg at alea.gnuu.de>  Fri, 8 Jun 2007 13:15:13 +0200
+
 jed (1:0.99.19~pre89-1) experimental; urgency=low
 
   * New upstream release, taken from the upstream SVN repository at

Modified: jed/branches/0.99.19/debian/patches/00list
===================================================================
--- jed/branches/0.99.19/debian/patches/00list	2007-06-08 09:46:25 UTC (rev 771)
+++ jed/branches/0.99.19/debian/patches/00list	2007-06-08 11:16:32 UTC (rev 772)
@@ -17,3 +17,4 @@
 fix-multi-key
 slang2
 fix-warnings
+empty_rectangle

Added: jed/branches/0.99.19/debian/patches/empty_rectangle.dpatch
===================================================================
--- jed/branches/0.99.19/debian/patches/empty_rectangle.dpatch	                        (rev 0)
+++ jed/branches/0.99.19/debian/patches/empty_rectangle.dpatch	2007-06-08 11:16:32 UTC (rev 772)
@@ -0,0 +1,22 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## empty_rectangle.dpatch by Jörg Sommer <joerg at alea.gnuu.de>
+##
+## DP: Improves the string_rectanle to not fail on a empty rectangle, but
+## DP: instert only the text.
+
+ at DPATCH@
+diff -urNad 0.99.19~/lib/emacsmsc.sl 0.99.19/lib/emacsmsc.sl
+--- 0.99.19~/lib/emacsmsc.sl	2006-02-13 18:51:58.000000000 +0100
++++ 0.99.19/lib/emacsmsc.sl	2007-06-08 13:07:03.482678222 +0200
+@@ -130,7 +130,10 @@
+    variable line = what_line ();
+    exchange_point_and_mark ();
+    variable nlines = what_line () - line + 1;
+-   kill_rect ();
++   if (what_column() == col)
++     pop_mark(0);
++   else
++     kill_rect ();
+    goto_line (line);
+    loop (nlines)
+      {


Property changes on: jed/branches/0.99.19/debian/patches/empty_rectangle.dpatch
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-jed-commit mailing list