]> git.wh0rd.org Git - nano.git/commitdiff
*really* make deleting and cutting text consistent with each other, and
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 9 Nov 2005 00:08:29 +0000 (00:08 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 9 Nov 2005 00:08:29 +0000 (00:08 +0000)
fix comments

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3115 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/cut.c
src/text.c

index 5581a243d61b1b2151401168cc49bccc2772f18c..dd384762a5588f28651a193c14641a8d0ce63f95 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -31,7 +31,7 @@
 static bool keep_cutbuffer = FALSE;
        /* Should we keep the contents of the cutbuffer? */
 static filestruct *cutbottom = NULL;
-       /* Pointer to end of cutbuffer. */
+       /* Pointer to the end of the cutbuffer. */
 
 void cutbuffer_reset(void)
 {
index c135c5d27a688851d47c188987a248d5dd05b1f7..4d6d855bee9a05e1157ec68f16911a4dd8f75e36 100644 (file)
@@ -96,8 +96,6 @@ void do_delete(void)
            openfile->mark_begin_x -= char_buf_len;
 #endif
        openfile->totsize--;
-
-       set_modified();
     } else if (openfile->current != openfile->filebot) {
        filestruct *foo = openfile->current->next;
 
@@ -132,17 +130,14 @@ void do_delete(void)
 
        /* If the NO_NEWLINES flag isn't set, and text has been added to
         * the magicline as a result of deleting at the end of the line
-        * before filebot, add a new magicline.  This effectively leaves
-        * the text unchanged, so don't mark the file as modified after
-        * doing this. */
+        * before filebot, add a new magicline. */
        if (!ISSET(NO_NEWLINES) && openfile->current ==
                openfile->filebot && openfile->current->data[0] != '\0')
            new_magicline();
-       else
-           set_modified();
     } else
        return;
 
+    set_modified();
 
 #ifdef ENABLE_COLOR
     /* If color syntaxes are available and turned on, we need to call