updated for version 7.0061
diff --git a/src/misc1.c b/src/misc1.c
index b3a18e5..50017c4 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -106,6 +106,7 @@
int doit = FALSE;
int ind_done;
int tab_pad;
+ int retval = FALSE;
/*
* First check if there is anything to do and compute the number of
@@ -266,12 +267,13 @@
if (saved_cursor.lnum == curwin->w_cursor.lnum
&& saved_cursor.col >= (colnr_T)(p - oldline))
saved_cursor.col += ind_len - (p - oldline);
+ retval = TRUE;
}
else
vim_free(newline);
curwin->w_cursor.col = ind_len;
- return TRUE;
+ return retval;
}
/*