From: mdw Date: Wed, 18 Nov 1998 21:25:30 +0000 (+0000) Subject: Remove bogus `-h' option from the options list. X-Git-Tag: 1.0.1~2 X-Git-Url: https://git.distorted.org.uk/~mdw/xtoys/commitdiff_plain/881bb211640d0f772ca4374437fbdc9dad8e2651 Remove bogus `-h' option from the options list. --- diff --git a/xgetline.c b/xgetline.c index 1da9ed1..2647772 100644 --- a/xgetline.c +++ b/xgetline.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: xgetline.c,v 1.1 1998/11/16 23:00:49 mdw Exp $ + * $Id: xgetline.c,v 1.2 1998/11/18 21:25:30 mdw Exp $ * * Fetch a line of text from the user * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: xgetline.c,v $ + * Revision 1.2 1998/11/18 21:25:30 mdw + * Remove bogus `-h' option from the options list. + * * Revision 1.1 1998/11/16 23:00:49 mdw * Initial versions. * @@ -166,7 +169,7 @@ int main(int argc, char *argv[]) /* --- Fetch an option --- */ - i = getopt_long(argc, argv, "ht:p:d:i", opt, 0); + i = getopt_long(argc, argv, "t:p:d:i", opt, 0); if (i < 0) break;