Change `-ise' to `-ize' throughout.
authormdw <mdw>
Thu, 13 May 1999 22:59:07 +0000 (22:59 +0000)
committermdw <mdw>
Thu, 13 May 1999 22:59:07 +0000 (22:59 +0000)
aclocal.glob
mdwopt.c
mdwopt.h

index cf5334f..5ae7364 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-                                    *@--GLOB-HEADER--@*
 dnl
-dnl $Id: aclocal.glob,v 1.1 1999/05/05 19:23:47 mdw Exp $
+dnl $Id: aclocal.glob,v 1.2 1999/05/13 22:57:23 mdw Exp $
 dnl
 dnl Common library of autoconf macros
 dnl
@@ -28,13 +28,16 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 dnl----- Revision history ---------------------------------------------------
 dnl
 dnl $Log: aclocal.glob,v $
-dnl Revision 1.1  1999/05/05 19:23:47  mdw
-dnl Initial revision
+dnl Revision 1.2  1999/05/13 22:57:23  mdw
+dnl Change `-ise' to `-ize' throughout.
+dnl
+dnl Revision 1.1.1.1  1999/05/05 19:23:47  mdw
+dnl New import.  The old CVS repository was lost in a disk disaster.
 dnl
 
 dnl----- Common files distribution --------------------------- *@--NOTICE--@*
 dnl
-dnl $Id: aclocal.glob,v 1.1 1999/05/05 19:23:47 mdw Exp $
+dnl $Id: aclocal.glob,v 1.2 1999/05/13 22:57:23 mdw Exp $
 
 dnl --- *@-AC_PROG_CC_STDC-@* ---
 dnl
@@ -223,7 +226,7 @@ dnl Author: Unknown
 dnl
 dnl Synopsis:  AM_INIT_GUILE_MODULE(MODNAME)
 dnl
-dnl Arguments: MODNAME = value to initialise `module' variable with
+dnl Arguments: MODNAME = value to initialize `module' variable with
 dnl
 dnl Use:       This macro will automatically get the guile version from the
 dnl            top-level srcdir, and will initialize automake.  It also
index 37d6581..e8e167c 100644 (file)
--- a/mdwopt.c
+++ b/mdwopt.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: mdwopt.c,v 1.1 1999/05/05 19:23:47 mdw Exp $
+ * $Id: mdwopt.c,v 1.2 1999/05/13 22:57:23 mdw Exp $
  *
  * Options parsing, similar to GNU @getopt_long@
  *
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: mdwopt.c,v $
- * Revision 1.1  1999/05/05 19:23:47  mdw
- * Initial revision
+ * Revision 1.2  1999/05/13 22:57:23  mdw
+ * Change `-ise' to `-ize' throughout.
+ *
+ * Revision 1.1.1.1  1999/05/05 19:23:47  mdw
+ * New import.  The old CVS repository was lost in a disk disaster.
  *
  * --- Previous lives ---
  *
@@ -253,7 +256,7 @@ static const char *mo__findOpt(int o, const char *shortopt,
  *              usually done by using a `%|+|%' instead of a `%|-|%' to
  *              introduce the option.
  *
- *              Long options, as popularised by the GNU utilities, are given
+ *              Long options, as popularized by the GNU utilities, are given
  *              long-ish memorable names, preceded by a double-dash `%|--|%'.
  *              Since their names are more than a single character, long
  *              options can't be combined in the same way as short options.
@@ -652,7 +655,7 @@ int mdwopt(int argc, char *const *argv,
     botched:
       if (match == -1) {               /* If we couldn't find a match */
        if (data->err) {
-         fprintf(stderr, "%s: unrecognised option `%s%s'\n",
+         fprintf(stderr, "%s: unrecognized option `%s%s'\n",
                  data->prog,
                  prefix, p);
        }
index 1615669..ef508b3 100644 (file)
--- a/mdwopt.h
+++ b/mdwopt.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: mdwopt.h,v 1.1 1999/05/05 19:23:47 mdw Exp $
+ * $Id: mdwopt.h,v 1.2 1999/05/13 22:57:23 mdw Exp $
  *
  * Options parsing, similar to GNU @getopt_long@
  *
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: mdwopt.h,v $
- * Revision 1.1  1999/05/05 19:23:47  mdw
- * Initial revision
+ * Revision 1.2  1999/05/13 22:57:23  mdw
+ * Change `-ise' to `-ize' throughout.
+ *
+ * Revision 1.1.1.1  1999/05/05 19:23:47  mdw
+ * New import.  The old CVS repository was lost in a disk disaster.
  *
  * --- Previous lives ---
  *
@@ -218,7 +221,7 @@ enum {
  *              usually done by using a `%|+|%' instead of a `%|-|%' to
  *              introduce the option.
  *
- *              Long options, as popularised by the GNU utilities, are given
+ *              Long options, as popularized by the GNU utilities, are given
  *              long-ish memorable names, preceded by a double-dash `%|--|%'.
  *              Since their names are more than a single character, long
  *              options can't be combined in the same way as short options.