]> git.wh0rd.org Git - nano.git/commitdiff
Removing an obsolete boolean variable.
authorBenno Schulenberg <bensberg@justemail.net>
Tue, 17 Jun 2014 15:37:34 +0000 (15:37 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Tue, 17 Jun 2014 15:37:34 +0000 (15:37 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4975 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index 74532c70fbb56e53716c8d6d00e3f368d8394c35..57911f576bb9a6f00794a9da8f06abea06b672c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2014-06-17  Benno Schulenberg  <bensberg@justemail.net>
+       * src/text.c (do_undo, do_redo): Remove obsolete boolean variable.
+
 2014-06-16  David Lawrence Ramsey  <pooka109@gmail.com>
        * src/nano.c (do_exit): Display the message "No file name" on the
        statusbar for two seconds when --tempfile was given and the current
index 271ad2d289ae738d4eee9d41104b41cc692d4817..404df9e65e3b371ac11c40404f95c6a91d56d4d7 100644 (file)
@@ -435,7 +435,6 @@ void redo_cut(undo *u)
 /* Undo the last thing(s) we did. */
 void do_undo(void)
 {
-    bool gotolinecolumn = FALSE;
     undo *u = openfile->current_undo;
     filestruct *t = 0;
     size_t len = 0;
@@ -554,10 +553,9 @@ void do_undo(void)
        break;
     }
 
-    renumber(f);
-    if (gotolinecolumn)
-       do_gotolinecolumn(u->lineno, u->begin, FALSE, FALSE, FALSE, TRUE);
     statusbar(_("Undid action (%s)"), undidmsg);
+
+    renumber(f);
     openfile->current_undo = openfile->current_undo->next;
     openfile->last_action = OTHER;
     set_modified();
@@ -566,7 +564,6 @@ void do_undo(void)
 /* Redo the last thing(s) we undid. */
 void do_redo(void)
 {
-    bool gotolinecolumn = FALSE;
     undo *u = openfile->undotop;
     size_t len = 0;
     char *undidmsg, *data;
@@ -673,8 +670,6 @@ void do_redo(void)
        break;
     }
 
-    if (gotolinecolumn)
-       do_gotolinecolumn(u->lineno, u->begin, FALSE, FALSE, FALSE, TRUE);
     statusbar(_("Redid action (%s)"), undidmsg);
 
     openfile->current_undo = u;