Added a check. Minis & shorties need an N or P argument.
This commit is contained in:
parent
d07b17ca5c
commit
cb84476be0
1 changed files with 4 additions and 1 deletions
|
@ -220,7 +220,10 @@ int decflag(str) char *str ; {
|
||||||
if ( escape!=ILLGL ) type|=OPESC ;
|
if ( escape!=ILLGL ) type|=OPESC ;
|
||||||
if ( wordm!=ILLGL ) type|=OPWORD ;
|
if ( wordm!=ILLGL ) type|=OPWORD ;
|
||||||
switch ( range) {
|
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 1 : type|=OP_POS ; break ;
|
||||||
case 2 : type|=OP_NEG ; break ;
|
case 2 : type|=OP_NEG ; break ;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue