gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog libbase/arg_parser.cpp libbase/...


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog libbase/arg_parser.cpp libbase/...
Date: Fri, 28 Mar 2008 10:13:28 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/03/28 10:13:28

Modified files:
        .              : ChangeLog 
        libbase        : arg_parser.cpp arg_parser.h 

Log message:
        Add FSF to copyright holders.
        
        Is this correct? The modifications are fairly trivial at the moment,
        but there are some differences.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6051&r2=1.6052
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/arg_parser.cpp?cvsroot=gnash&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/arg_parser.h?cvsroot=gnash&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6051
retrieving revision 1.6052
diff -u -b -r1.6051 -r1.6052
--- ChangeLog   28 Mar 2008 10:11:40 -0000      1.6051
+++ ChangeLog   28 Mar 2008 10:13:26 -0000      1.6052
@@ -1,5 +1,9 @@
 2008-03-28 Benjamin Wolsey <address@hidden>
 
+       * libbase/arg_parser.{cpp,h}: add FSF copyright.
+
+2008-03-28 Benjamin Wolsey <address@hidden>
+
        * libbase/tu_file.{cpp,h}: remove everything that isn't currently
          used, including all membuf code.
     * libbase/membuf.{cpp,h}: unused. Dropped.

Index: libbase/arg_parser.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/arg_parser.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- libbase/arg_parser.cpp      15 Mar 2008 10:39:15 -0000      1.1
+++ libbase/arg_parser.cpp      28 Mar 2008 10:13:27 -0000      1.2
@@ -1,16 +1,17 @@
 //  Arg_parser - A POSIX/GNU command line argument parser.
 //    Copyright (C) 2006, 2007, 2008 Antonio Diaz Diaz.
-
+//    Copyright (C) 2008 Free Software Foundation, Inc.
+//
 //    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 3 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, see <http://www.gnu.org/licenses/>.
 

Index: libbase/arg_parser.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/arg_parser.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- libbase/arg_parser.h        27 Mar 2008 16:12:34 -0000      1.3
+++ libbase/arg_parser.h        28 Mar 2008 10:13:27 -0000      1.4
@@ -1,39 +1,40 @@
 //  Arg_parser - A POSIX/GNU command line argument parser.
 //    Copyright (C) 2006, 2007, 2008 Antonio Diaz Diaz.
-
+//    Copyright (C) 2008 Free Software Foundation, Inc.
+//
 //    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 3 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, see <http://www.gnu.org/licenses/>.
-
-
+//
+//
 //  Arg_parser reads the arguments in `argv' and creates a number of
 //    option codes, option arguments and non-option arguments.
-
+//
 //    In case of error, `error' returns a non-empty error message.
-
+//
 //    `options' is an array of `struct Option' terminated by an element
 //    containing a code which is zero. A null name means a short-only
 //    option. A code value outside the unsigned char range means a
 //    long-only option.
-
+//
 //    Arg_parser normally makes it appear as if all the option arguments
 //    were specified before all the non-option arguments for the purposes
 //    of parsing, even if the user of your program intermixed option and
 //    non-option arguments. If you want the arguments in the exact order
 //    the user typed them, call `Arg_parser' with `in_order' = true.
-
+//
 //    The argument `--' terminates all options; any following arguments are
 //    treated as non-option arguments, even if they begin with a hyphen.
-
+//
 //    The syntax for optional option arguments is `-<short_option><argument>'
 //    (without whitespace), or `--<long_option>=<argument>'.
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]