nano

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

commit 67cdd71352cbea5b1aa83d1b143c66dcaeca2509
parent 6a88fe8807fa3c3fdf0189f9c28d0bbba00147bb
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sat,  2 Jan 2021 16:55:17 +0100

tweaks: push back the deprecation of the 'set nowrap' option

It is probably the most used option in a .nanorc file.
Keep accepting it for three more years.

Diffstat:
Msrc/rcfile.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/rcfile.c b/src/rcfile.c @@ -71,7 +71,7 @@ static const rcoption rcopts[] = { {"nonewlines", NO_NEWLINES}, {"nopauses", NO_PAUSES}, /* Obsolete; remove in 2021. */ #ifdef ENABLE_WRAPPING - {"nowrap", NO_WRAP}, /* Deprecated; remove in 2021. */ + {"nowrap", NO_WRAP}, /* Deprecated; remove in 2024. */ #endif #ifdef ENABLE_OPERATINGDIR {"operatingdir", 0},