commit 03d27b7806278ed1e723203346288e3ba84a0b4d
parent 58c9739532b83220ccf8ac8e6835cf1c6769a282
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Fri, 1 Jan 2016 11:17:01 +0100
ed: Reset modflag in clearbuf()
For the same reason we don't care about the state of
the buffer in clearundo() we can reset modflag in
clearbuf(), because after calling it we don't want
to know anything about the previous state.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ed.c b/ed.c
@@ -322,7 +322,7 @@ clearbuf()
free(zero);
zero = NULL;
scratch = csize = idxsize = lastidx = curln = lastln = 0;
- lastln = curln = 0;
+ modflag = lastln = curln = 0;
}
static void