1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
|
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
|
+
+
|
if(tokenv<0 || tokenv>=cl->nimages) ParseError("Image number out of range\n");
i=tokenv;
nxttok();
if(tokent!=TF_INT) ParseError("Number expected\n");
if(tokenv<i) ParseError("Backward range in (DefaultImage) block\n");
if(tokenv>=cl->nimages) ParseError("Image number out of range\n");
while(i<=tokenv) cl->images[i++]|=0x8000;
nxttok();
if(tokent!=TF_CLOSE) ParseError("Close parenthesis expected\n");
} else if(tokent!=TF_CLOSE) {
ParseError("Number expected\n");
}
} else if(tokent==TF_CLOSE) {
break;
} else if(tokent==TF_INT) {
if(tokenv<0 || tokenv>=cl->nimages) ParseError("Image number out of range\n");
|