summaryrefslogtreecommitdiffstats
path: root/src/undo.c
diff options
context:
space:
mode:
authorandmarti1424 <andmarti@gmail.com>2017-01-30 21:49:37 -0300
committerandmarti1424 <andmarti@gmail.com>2017-01-30 21:49:37 -0300
commitc5b13dbafb519fe352ddb61af6a6c0848c65c86d (patch)
tree94fd9aa5731171c7604e2a359523c678b714ee09 /src/undo.c
parent8a3027c13738ea653f8b73f966a7fc0b280619ba (diff)
removed blank spaces
Diffstat (limited to 'src/undo.c')
-rw-r--r--src/undo.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/undo.c b/src/undo.c
index d40a421..6e3128d 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -525,7 +525,6 @@ void do_undo() {
if (undo_list->p_ant != NULL) undo_list = undo_list->p_ant;
undo_list_pos--;
sc_info("Change: %d of %d", undo_list_pos, len_undo_list());
-
return;
}
@@ -584,7 +583,6 @@ void do_redo() {
// Remove 'ent' elements
struct ent * i = ul->removed;
while (i != NULL) {
- //sc_debug("redo removed: %d %d", i->row, i->col);
struct ent * pp = *ATBL(tbl, i->row, i->col);
clearent(pp);
cleanent(pp);