From: keie Date: Thu, 8 Nov 1984 11:09:56 +0000 (+0000) Subject: Added a check. Minis & shorties need an N or P argument. X-Git-Tag: release-5-5~5984 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=cb84476be0e267c15a92142d87751f814eddfc25;p=ack.git Added a check. Minis & shorties need an N or P argument. --- diff --git a/util/ass/maktab.c b/util/ass/maktab.c index 9fa57e32a..31c5bdcfe 100644 --- a/util/ass/maktab.c +++ b/util/ass/maktab.c @@ -220,7 +220,10 @@ int decflag(str) char *str ; { if ( escape!=ILLGL ) type|=OPESC ; if ( wordm!=ILLGL ) type|=OPWORD ; switch ( range) { - case ILLGL : type|=OP_BOTH ; break ; + case ILLGL : type|=OP_BOTH ; + if ( type==OPMINI || type==OPSHORT ) + error("Minies and shorties must have P or N") ; + break ; case 1 : type|=OP_POS ; break ; case 2 : type|=OP_NEG ; break ; }