]> git.wh0rd.org Git - nano.git/commitdiff
fix copyright years on source files; all functions in browser.c were
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 14 Nov 2005 22:20:35 +0000 (22:20 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Mon, 14 Nov 2005 22:20:35 +0000 (22:20 +0000)
originally added in 2001; the oldest function in color.c is
do_colorinit() (now color_init()), which was originally added in 2001;
the oldest function in chars.c is revstrstr(), which was originally
added in 2001; the oldest function in help.c is do_help(), which was
originally added in 2000; the oldest function in prompt.c is statusq()
(now do_prompt()), which was originally added before 0.6.6, which was
apparently in 1999; all functions in rcfile.c were originally added in
2001; one of the oldest functions in search.c is do_search(), which was
originally added in 0.2.7, which was apparently in 1999; and one of the
oldest functions in text.c is do_wrap(), which was originally added in
0.3.1, which was apparently in 1999; also, for functions originally
adapted from other sources, add notices from the original files, as we
do with the tab completion functions adapted from busybox

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

ChangeLog
src/browser.c
src/chars.c
src/color.c
src/files.c
src/help.c
src/prompt.c
src/rcfile.c
src/search.c
src/text.c
src/utils.c

index 01ec3296db518059ab25310ab9ae41d304c8f105..2101c8a62e30860df9919465c79e7e47ad863816 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -78,6 +78,23 @@ CVS code -
          do_prompt()), statusq_abort() (renamed do_prompt_abort()), and
          do_yesno() (renamed do_yesno_prompt()). (DLR)
        - Initialize the static pid_t pid in text.c to -1. (DLR)
+       - Fix copyright years on source files.  All functions in
+         browser.c were originally added in 2001; the oldest function
+         in color.c is do_colorinit() (now color_init()), which was
+         originally added in 2001; the oldest function in chars.c is
+         revstrstr(), which was originally added in 2001; the oldest
+         function in help.c is do_help(), which was originally added in
+         2000; the oldest function in prompt.c is statusq() (now
+         do_prompt()), which was originally added before 0.6.6, which
+         was apparently in 1999; all functions in rcfile.c were
+         originally added in 2001; one of the oldest functions in
+         search.c is do_search(), which was originally added in 0.2.7,
+         which was apparently in 1999; and one of the oldest functions
+         in text.c is do_wrap(), which was originally added in 0.3.1,
+         which was apparently in 1999. (DLR)
+       - For functions originally adapted from other sources, add
+         notices from the original files, as we do with the tab
+         completion functions adapted from busybox. (DLR)
 - chars.c:
   mbwidth()
        - If wcwidth() returns -1 for the character passed in, treat the
index 8eca7d204e72a9cd02f3cee94a8681fb17ce0baf..9c5cc16d500deb68b572fa6c7843dde929eb1cd6 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   browser.c                                                            *
  *                                                                        *
- *   Copyright (C) 2005 Chris Allegretta                                  *
+ *   Copyright (C) 2001-2005 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)  *
index ef704422832b892099597de67828d3f4ec225cfa..84a0446a99222be6dc8cfbeccf03523d1cea3165 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   chars.c                                                              *
  *                                                                        *
- *   Copyright (C) 2005 Chris Allegretta                                  *
+ *   Copyright (C) 2001-2005 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)  *
@@ -553,8 +553,30 @@ int mbstrncasecmp(const char *s1, const char *s2, size_t n)
 }
 
 #ifndef HAVE_STRCASESTR
-/* This function is equivalent to strcasestr().  It was adapted from
- * mutt's mutt_stristr() function. */
+/* This function (nstrcasestr(), originally mutt_stristr()) was adapted
+ * from mutt 1.2.4i (lib.c).  Here is the notice from that file:
+ *
+ * Copyright (C) 1996-2000 Michael R. Elkins <me@cs.hmc.edu>
+ * Copyright (C) 1999-2000 Thomas Roessler <roessler@guug.de>
+ * 
+ *     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 of the License, or (at your option) any later
+ *     version.
+ * 
+ *     This program is distributed in the hope that it will be
+ *     useful, but WITHOUT ANY WARRANTY; without even the implied
+ *     warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ *     PURPOSE.  See the GNU General Public License for more
+ *     details.
+ * 
+ *     You should have received a copy of the GNU General Public
+ *     License along with this program; if not, write to the Free
+ *     Software Foundation, Inc., 59 Temple Place - Suite 330,
+ *     Boston, MA  02111, USA. */
+
+/* This function is equivalent to strcasestr(). */
 const char *nstrcasestr(const char *haystack, const char *needle)
 {
     assert(haystack != NULL && needle != NULL);
index ee58d9dc7d3c644df79c0f93f8bd7f59d9c2ae0d..6e6d39675100425c77eef2d2e82867eeea20c6e6 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   color.c                                                              *
  *                                                                        *
- *   Copyright (C) 1999-2005 Chris Allegretta                             *
+ *   Copyright (C) 2001-2005 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)  *
index aa37635c702b24001cb1786dd10dbddd69ffbf63..2b4d5f25099ca229fa6848310b1130b809d5e828 100644 (file)
@@ -1947,7 +1947,7 @@ int is_dir(const char *buf)
 }
 
 /* These functions (username_tab_completion(), cwd_tab_completion(), and
- * input_tab()) were taken from busybox 0.46 (cmdedit.c).  Here is the
+ * input_tab()) were adapted from busybox 0.46 (cmdedit.c).  Here is the
  * notice from that file:
  *
  * Termios command line History and Editting, originally
index 327d492eace98262b014319283219c7f3c09f103..74bb3e6f7c67c47d53073869ef612880f21ffb31 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   help.c                                                               *
  *                                                                        *
- *   Copyright (C) 2005 Chris Allegretta                                  *
+ *   Copyright (C) 2000-2005 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)  *
index 3890d2bf2d8d3a62e59dc2dd65b0718e1d03e787..a14424eb050941021aaeb8b179e811506d7470db 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   prompt.c                                                             *
  *                                                                        *
- *   Copyright (C) 2005 Chris Allegretta                                  *
+ *   Copyright (C) 1999-2005 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)  *
index e1573bfe33e238302a56c9adc03bd15717899081..fb0219321d9b75fb4f3f441405ba03edf755a188 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   rcfile.c                                                             *
  *                                                                        *
- *   Copyright (C) 1999-2005 Chris Allegretta                             *
+ *   Copyright (C) 2001-2005 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)  *
index aa77f741b0739d0665512d54b4fdb6ccec7bed5b..47ea52d4ef92d5b6ede04aa8547f5d47f9b253af 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   search.c                                                             *
  *                                                                        *
- *   Copyright (C) 2000-2005 Chris Allegretta                             *
+ *   Copyright (C) 1999-2005 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)  *
index d28ddd4708c585e7308a8c18da9ddf61ed630d97..60cc68d19eda45278cc40a17c3cb6b8ce19149b3 100644 (file)
@@ -2,7 +2,7 @@
 /**************************************************************************
  *   text.c                                                               *
  *                                                                        *
- *   Copyright (C) 2005 Chris Allegretta                                  *
+ *   Copyright (C) 1999-2005 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)  *
index 009b525e9eb36989270d8f245b686032a17e456e..bd9bd96b0ad1844d975f31b8ed722692abe6f893 100644 (file)
@@ -157,10 +157,30 @@ void sunder(char *str)
     }
 }
 
+/* These functions (ngetline() and ngetdelim(), originally getline() and
+ * getdelim()) were adapted from GNU mailutils 0.5 (mailbox/getline.c).
+ * Here is the notice from that file:
+ *
+ * GNU Mailutils -- a suite of utilities for electronic mail
+ * Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA  */
+
 #if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
 #ifndef HAVE_GETLINE
-/* This function is equivalent to getline().  It was adapted from
- * GNU mailutils' getline() function. */
+/* This function is equivalent to getline(). */
 ssize_t ngetline(char **lineptr, size_t *n, FILE *stream)
 {
     return getdelim(lineptr, n, '\n', stream);
@@ -168,8 +188,7 @@ ssize_t ngetline(char **lineptr, size_t *n, FILE *stream)
 #endif
 
 #ifndef HAVE_GETDELIM
-/* This function is equivalent to getdelim().  It was adapted from
- * GNU mailutils' getdelim() function. */
+/* This function is equivalent to getdelim(). */
 ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
 {
     size_t indx = 0;