From: mdw Date: Wed, 7 Feb 2001 09:09:11 +0000 (+0000) Subject: Fix spurious error when `-file' is used. X-Git-Tag: 1.0.0~7 X-Git-Url: https://git.distorted.org.uk/~mdw/anag/commitdiff_plain/60dffc01674ffe3b92a9ae717f149984a8db78ad Fix spurious error when `-file' is used. --- diff --git a/anag.c b/anag.c index 97b31c1..f160fa1 100644 --- a/anag.c +++ b/anag.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: anag.c,v 1.1 2001/02/04 17:14:42 mdw Exp $ + * $Id: anag.c,v 1.2 2001/02/07 09:09:11 mdw Exp $ * * Main driver for anag * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: anag.c,v $ + * Revision 1.2 2001/02/07 09:09:11 mdw + * Fix spurious error when `-file' is used. + * * Revision 1.1 2001/02/04 17:14:42 mdw * Initial checkin * @@ -230,6 +233,7 @@ static unsigned nextopt(const char *const **arg) default: return (oo->tag); } + continue; bad: die("syntax error near `%s': unknown token type", av[ai - 1]); }