ed

simple ed
git clone git://git.2f30.org/ed
Log | Files | Refs | LICENSE

commit c64df99ebbce83c4f352e4dd23c7fd69adda1bc3
parent bd64e1205e3f2bb3dd69c8471b6b735286303edf
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 10 Dec 2015 18:47:25 +0100

Remove debug message about cache

This message is no longer needed

Diffstat:
Med.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/ed.c b/ed.c @@ -175,7 +175,6 @@ gettxt(int line) repeat: if (!csize || off < lasto || off - lasto >= csize) { block = off & ~(CACHESIZ-1); - fprintf(stderr, "getting a new cache at %ld\n", block); if (lseek(scratch, block, SEEK_SET) < 0 || (n = read(scratch, buf, CACHESIZ)) < 0) { error("input/output error");