nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 684fc8f84ae762ca2e2191543afe1a5b400a79f5
parent 092174dad5a9d0479d0c3f04337f09e491c5ac49
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 11 Jul 2017 18:07:40 +0200

tweaks: remove two superfluous includes

The precalculation of the multiline regexes no longer looks at the
keyboard every second, and the backup code makes use of futimens()
nowadays.

Diffstat:
Msrc/color.c | 1-
Msrc/files.c | 1-
2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/color.c b/src/color.c @@ -24,7 +24,6 @@ #include <stdio.h> #include <string.h> #include <errno.h> -#include <time.h> #include <unistd.h> #ifdef HAVE_MAGIC_H diff --git a/src/files.c b/src/files.c @@ -25,7 +25,6 @@ #include <stdio.h> #include <string.h> #include <unistd.h> -#include <utime.h> #include <fcntl.h> #include <errno.h> #include <ctype.h>