diff --git a/ChangeLog b/ChangeLog index c7dcf638a75c49f109e4920b3d15ac90a7438f51..455648076345822bf13c55744bad295f73cf458f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -56,6 +56,9 @@ Changes do_replace_loop() to do the checks. It really should not be done here, as some function in winio.c should handle this, but I can't seem to find a good place to put this check. + - Updated all copyright notices to say 2003 rather than 2002, as + nearly all the source files have been worked on this year + (DLR). - configure.ac: - Added tr and eu to ALL_LINGUAS (Jordi). - Fix now inaccurate description of --enable-tiny's effects; it diff --git a/color.c b/color.c index ac30b7127dc194abcbc71bf21a6cb171fc4ea358..56f5523646843b712889c3bcefe44b1d26c43569 100644 --- a/color.c +++ b/color.c @@ -2,7 +2,7 @@ /************************************************************************** * color.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/cut.c b/cut.c index bc99bc02ab4f238d848282f30c721f793553ccf3..35a715c5a316de0abe7ab2a69adaca26d4ba1ce9 100644 --- a/cut.c +++ b/cut.c @@ -2,7 +2,7 @@ /************************************************************************** * cut.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/files.c b/files.c index dd3c648195844327bc0aef37f479e6bbdc72215d..e2d3cf4954912266799ff8213305504f83289e41 100644 --- a/files.c +++ b/files.c @@ -2,7 +2,7 @@ /************************************************************************** * files.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/global.c b/global.c index 89b45772524ebcd455c2f79ce31c67c6c087ee73..8fdd288f090322cd6d26b2bdfbe2dcb623af9d2f 100644 --- a/global.c +++ b/global.c @@ -2,7 +2,7 @@ /************************************************************************** * global.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/move.c b/move.c index 2807eb02fbb9fcef6ee38525860eb3429ad34e23..3baf14b27cc03163dce7b1f46cc5a9e0c651e875 100644 --- a/move.c +++ b/move.c @@ -2,7 +2,7 @@ /************************************************************************** * move.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * @@ -171,7 +171,7 @@ int do_down(void) current = current->next; current_x = actual_x(current, placewewant); - /* Note current_y is zero-based. This test checks for the cursor + /* Note current_y is zero-based. This test checks for the cursor's * being on the last row of the edit window. */ if (current_y == editwinrows - 1) { #ifndef NANO_SMALL diff --git a/nano.c b/nano.c index c98c74a3103dc703bd48565f56a249ec1db992ea..35e7af4f5f40da31ddb9369fbf4bddd6d5b924c3 100644 --- a/nano.c +++ b/nano.c @@ -2,7 +2,7 @@ /************************************************************************** * nano.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * @@ -3710,9 +3710,9 @@ int main(int argc, char *argv[]) break; #endif + case -1: /* Stuff that we don't want to do squat */ case 0: /* Erg */ case 29: /* Ctrl-] */ - case -1: /* Stuff that we don't want to do squat */ case 410: /* Must ignore this, it's sent when we resize */ #ifdef PDCURSES case 541: /* ???? */ diff --git a/nano.h b/nano.h index 612633d71ff19c428064ff484f22b7fe9be0ff46..25fe0a3a6f144081299e75514a7e989b532ef051 100644 --- a/nano.h +++ b/nano.h @@ -2,7 +2,7 @@ /************************************************************************** * nano.h * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/proto.h b/proto.h index 5f01c14826014f1b22c7ed9ea23e28e64c39ede0..5b428605c2868e176ccf9552bcafb39935aa4e2c 100644 --- a/proto.h +++ b/proto.h @@ -2,7 +2,7 @@ /************************************************************************** * proto.h * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/rcfile.c b/rcfile.c index 4f6faa15e5b9b47e40f15a7f100415933afc7620..f8974a4c2ba858f535042b4f6acdbc8a45f80dba 100644 --- a/rcfile.c +++ b/rcfile.c @@ -2,7 +2,7 @@ /************************************************************************** * rcfile.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/search.c b/search.c index 13640bf29b372c67c898594b638737ac15303016..59609b5b7243ca3a86d13ecb878308b04c46366b 100644 --- a/search.c +++ b/search.c @@ -2,7 +2,7 @@ /************************************************************************** * search.c * * * - * Copyright (C) 2000-2002 Chris Allegretta * + * Copyright (C) 2000-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/utils.c b/utils.c index f20fc0e05e3051f379eb92e36ed6c9ec626f56f8..557624b7e43aea8d39231d6aa36229b2181caaf2 100644 --- a/utils.c +++ b/utils.c @@ -2,7 +2,7 @@ /************************************************************************** * utils.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) * diff --git a/winio.c b/winio.c index 347ba5662bd5cdfe1a1f125b05e51f3f468fe94c..0cc4727828bc376a913351f32ac7cacd8381926e 100644 --- a/winio.c +++ b/winio.c @@ -2,7 +2,7 @@ /************************************************************************** * winio.c * * * - * Copyright (C) 1999-2002 Chris Allegretta * + * Copyright (C) 1999-2003 Chris Allegretta * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2, or (at your option) *