]> git.wh0rd.org Git - nano.git/commitdiff
Add and fix bug #66 (David Lawrence Ramsey)
authorChris Allegretta <chrisa@asty.org>
Wed, 3 Oct 2001 01:53:09 +0000 (01:53 +0000)
committerChris Allegretta <chrisa@asty.org>
Wed, 3 Oct 2001 01:53:09 +0000 (01:53 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@824 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

BUGS
ChangeLog
cut.c

diff --git a/BUGS b/BUGS
index ff4b277d5a5e8953716abcee73f7fdbf2c275d03..1d5654bba89b7937c1d10aaddc075eaf62c9e3f4 100644 (file)
--- a/BUGS
+++ b/BUGS
   (Jordi Mallach) [FIXED].
 - Cutting one line of text cause the screen to recenter the line 
   (reported and fixed by David Lawrence Ramsey) (65) [FIXED].
+- When cutting marked text including the bottom of the file, a new
+  "magic line" is not created" (reported by David Lawrence
+  Ramsey, fixed by David Lawrence Ramsey & Chris) (66) [FIXED].
 
 ** Open BUGS **
 
index a97ce0116fa4fa794f96255d1b0e895eb0191c3e..a765faafc020812f8fffd2b2fb63ec0f31d2c40d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,11 @@ CVS code -
 - cut.c:
   do_cut_text()
        - Don't recenter the line when cutting one line (David Lawrence
-         Ramsey) (Bug #65).
+         Ramsey) (BUG #65).
+  cut_marked_segment()
+       - Add magic line when cutting a selection including filebot 
+         (discovered by David Lawrence Ramsey, fixed by DLR & Chris,
+         fixes BUG #66).
 - winio.c:
        - Added David Lawrence Ramsey to credits.
 - po/nl.po:
diff --git a/cut.c b/cut.c
index 55e194819c62a2fa69be5694ea40e6c8c68a4a3a..2dd8697a7a02a2bf737bd9065cba2424f283af6d 100644 (file)
--- a/cut.c
+++ b/cut.c
@@ -127,6 +127,8 @@ void cut_marked_segment(filestruct * top, int top_x, filestruct * bot,
            filebot = next;
        } else {
            filebot = top;
+           if (top_x > 0)
+               new_magicline();
        }
     }
     if (top->lineno < edittop->lineno)