nano

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

commit f72fecee9b34bbde83dbe3ba449b0a010d7896fc
parent 97a8a62128d3b197b6153fa17bff9be031a35761
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Wed, 24 Jan 2018 10:13:28 +0100

copyright: update the years for the FSF

And one for me, for the much changed keyboard stuff.

Diffstat:
Msrc/browser.c | 2+-
Msrc/chars.c | 2+-
Msrc/color.c | 2+-
Msrc/cut.c | 2+-
Msrc/files.c | 2+-
Msrc/global.c | 2+-
Msrc/help.c | 2+-
Msrc/history.c | 2+-
Msrc/move.c | 2+-
Msrc/nano.c | 6+++---
Msrc/nano.h | 2+-
Msrc/prompt.c | 2+-
Msrc/proto.h | 2+-
Msrc/rcfile.c | 2+-
Msrc/search.c | 2+-
Msrc/text.c | 2+-
Msrc/utils.c | 2+-
Msrc/winio.c | 6+++---
18 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/src/browser.c b/src/browser.c @@ -1,7 +1,7 @@ /************************************************************************** * browser.c -- This file is part of GNU nano. * * * - * Copyright (C) 2001-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 2001-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2015-2016 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/chars.c b/src/chars.c @@ -1,7 +1,7 @@ /************************************************************************** * chars.c -- This file is part of GNU nano. * * * - * Copyright (C) 2001-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 2001-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2016-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/color.c b/src/color.c @@ -1,7 +1,7 @@ /************************************************************************** * color.c -- This file is part of GNU nano. * * * - * Copyright (C) 2001-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 2001-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/cut.c b/src/cut.c @@ -1,7 +1,7 @@ /************************************************************************** * cut.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014 Mark Majeres * * Copyright (C) 2016 Benno Schulenberg * * * diff --git a/src/files.c b/src/files.c @@ -1,7 +1,7 @@ /************************************************************************** * files.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2015-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/global.c b/src/global.c @@ -1,7 +1,7 @@ /************************************************************************** * global.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/help.c b/src/help.c @@ -1,7 +1,7 @@ /************************************************************************** * help.c -- This file is part of GNU nano. * * * - * Copyright (C) 2000-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 2000-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2017 Rishabh Dave * * Copyright (C) 2014-2017 Benno Schulenberg * * * diff --git a/src/history.c b/src/history.c @@ -1,7 +1,7 @@ /************************************************************************** * history.c -- This file is part of GNU nano. * * * - * Copyright (C) 2003-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 2003-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2016-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/move.c b/src/move.c @@ -1,7 +1,7 @@ /************************************************************************** * move.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/nano.c b/src/nano.c @@ -1,7 +1,7 @@ /************************************************************************** * nano.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * @@ -917,8 +917,8 @@ void version(void) #else printf(_(" GNU nano, version %s\n"), VERSION); #endif - printf(" (C) 1999-2011, 2013-2017 Free Software Foundation, Inc.\n"); - printf(_(" (C) 2014-%s the contributors to nano\n"), "2017"); + printf(" (C) 1999-2011, 2013-2018 Free Software Foundation, Inc.\n"); + printf(_(" (C) 2014-%s the contributors to nano\n"), "2018"); printf(_(" Email: nano@nano-editor.org Web: https://nano-editor.org/")); printf(_("\n Compiled options:")); diff --git a/src/nano.h b/src/nano.h @@ -1,7 +1,7 @@ /************************************************************************** * nano.h -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/prompt.c b/src/prompt.c @@ -1,7 +1,7 @@ /************************************************************************** * prompt.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2016 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/proto.h b/src/proto.h @@ -1,7 +1,7 @@ /************************************************************************** * proto.h -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * * * GNU nano is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published * diff --git a/src/rcfile.c b/src/rcfile.c @@ -1,7 +1,7 @@ /************************************************************************** * rcfile.c -- This file is part of GNU nano. * * * - * Copyright (C) 2001-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 2001-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014 Mike Frysinger * * Copyright (C) 2014-2017 Benno Schulenberg * * * diff --git a/src/search.c b/src/search.c @@ -1,7 +1,7 @@ /************************************************************************** * search.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2015-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/text.c b/src/text.c @@ -1,7 +1,7 @@ /************************************************************************** * text.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2014-2015 Mark Majeres * * Copyright (C) 2016 Mike Scalora * * Copyright (C) 2016 Sumedh Pendurkar * diff --git a/src/utils.c b/src/utils.c @@ -1,7 +1,7 @@ /************************************************************************** * utils.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * * Copyright (C) 2016-2017 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * diff --git a/src/winio.c b/src/winio.c @@ -1,8 +1,8 @@ /************************************************************************** * winio.c -- This file is part of GNU nano. * * * - * Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. * - * Copyright (C) 2014-2017 Benno Schulenberg * + * Copyright (C) 1999-2011, 2013-2018 Free Software Foundation, Inc. * + * Copyright (C) 2014-2018 Benno Schulenberg * * * * GNU nano is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published * @@ -3559,7 +3559,7 @@ void do_credits(void) "", "", "", - "(C) 2017", + "(C) 2018", "Free Software Foundation, Inc.", "", "",