From 80605c3918377a2ed2f154d411bdb97c64c21875 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Tue, 6 Mar 2018 12:05:04 +0100 Subject: [PATCH] tweaks: exclude an unlikely warning from the tiny version --- src/nano.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nano.c b/src/nano.c index be77c9e6..ad959256 100644 --- a/src/nano.c +++ b/src/nano.c @@ -180,7 +180,9 @@ void renumber(filestruct *line) ssize_t number; if (line == NULL) { +#ifndef NANO_TINY statusline(ALERT, "Trying to renumber nothing -- please report a bug"); +#endif return; }