nano

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

commit 5bc6d0ef2e7a79078ce24606a4bc13b23c481c76
parent b92cbf5f09b1b260250f31d980e6aba11ced47ed
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Fri, 31 May 2024 16:41:46 +0200

tweaks: extend the deprecation period of 'set nowrap' and prefix 'bright'

Diffstat:
Msrc/rcfile.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rcfile.c b/src/rcfile.c @@ -69,7 +69,7 @@ static const rcoption rcopts[] = { {"nohelp", NO_HELP}, {"nonewlines", NO_NEWLINES}, #ifdef ENABLE_WRAPPING - {"nowrap", NO_WRAP}, /* Deprecated; remove in 2024. */ + {"nowrap", NO_WRAP}, /* Deprecated; remove in 2027. */ #endif #ifdef ENABLE_OPERATINGDIR {"operatingdir", 0}, @@ -1048,7 +1048,7 @@ short indices[COLORCOUNT] = { COLOR_RED, COLOR_GREEN, COLOR_BLUE, short color_to_short(const char *colorname, bool *vivid, bool *thick) { if (strncmp(colorname, "bright", 6) == 0 && colorname[6] != '\0') { - /* Prefix "bright" is deprecated; remove in 2024. */ + /* Prefix "bright" is deprecated; remove in 2027. */ *vivid = TRUE; *thick = TRUE; colorname += 6;