nano

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

commit 4873cc26f2e0d95dae3e7621ded458a6e4e018be
parent 0f8423eb4c5de4ecf58f5a32536e314882091c35
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 23 Aug 2020 09:05:47 +0200

build: stop mentioning Slang in two ./configure messages

Nobody ought to be using Slang, so don't give people the wrong
impression by mentioning it (and even mentioning it *first*).

Diffstat:
Mconfigure.ac | 16+++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -628,18 +628,16 @@ if test "x$enable_utf8" != xno && \ else if test "x$enable_utf8" = xyes; then AC_MSG_ERROR([ - *** UTF-8 support was requested, but insufficient UTF-8 support was - *** detected in your curses and/or C libraries. Please verify that - *** your Slang was built with UTF-8 support or your curses was built - *** with wide-character support, and that your C library was built + *** UTF-8 support was requested, but insufficient support was + *** detected in your curses and/or C libraries. Please verify + *** that both your curses library and your C library were built *** with wide-character support.]) elif test "x$enable_utf8" != xno; then AC_MSG_WARN([ - *** Insufficient UTF-8 support was detected in your curses and/or C - *** libraries. If you want UTF-8 support, please verify that your - *** Slang was built with UTF-8 support or your curses was built with - *** wide-character support, and that your C library was built with - *** wide-character support.]) + *** Insufficient UTF-8 support was detected in your curses + *** and/or C libraries. If you want UTF-8 support, please + *** verify that both your curses library and your C library + *** were built with wide-character support.]) fi fi