nano

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

commit d4e3c59f279b2085c34916964d04725c244ea6fa
parent d6c24c4133b70afe0c108ee4703130de894bfb27
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Wed, 27 Jul 2005 03:12:22 +0000

remove unnecessary can_change_colors() call


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2945 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

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

diff --git a/src/color.c b/src/color.c @@ -64,7 +64,7 @@ void color_init(void) { assert(openfile != NULL); - if (has_colors() && can_change_color()) { + if (has_colors()) { const colortype *tmpcolor; #ifdef HAVE_USE_DEFAULT_COLORS bool defok;